We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fac6f66 commit bea930cCopy full SHA for bea930c
src/index.ts
@@ -3,8 +3,6 @@ import {
3
JupyterFrontEndPlugin
4
} from '@jupyterlab/application';
5
6
-import { requestAPI } from './handler';
7
-
8
/**
9
* Initialization data for the @jupyter-ai/persona-manager extension.
10
*/
@@ -16,16 +14,6 @@ const plugin: JupyterFrontEndPlugin<void> = {
16
14
console.log(
17
15
'JupyterLab extension @jupyter-ai/persona-manager is activated!'
18
);
19
20
- requestAPI<any>('health')
21
- .then(data => {
22
- console.log(data);
23
- })
24
- .catch(reason => {
25
- console.error(
26
- `The jupyter_ai_persona_manager server extension appears to be missing.\n${reason}`
27
- );
28
- });
29
}
30
};
31
0 commit comments