You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project is a monorepo containing the frontend components and extensions to build
7
-
a chat in Jupyter.
6
+
This project is a monorepo containing:
7
+
8
+
- an extension to add a chat in jupyterlab
9
+
- the frontend components to build a chat extension for Jupyter application
8
10
9
11
Many components of this chat project come from [jupyter-ai](https://github.com/jupyterlab/jupyter-ai).
10
12
11
13

12
14
13
-
> **Warning**
14
-
>
15
+
> [!WARNING]
15
16
> This project is still in early development stage and its API may change often before
16
17
a stable release.
17
18
19
+
## Install chat extension
20
+
21
+
The chat extension is available on [PyPI](https://pypi.org/project/jupyterlab-chat/).
22
+
23
+
```bash
24
+
pip install jupyterlab-chat
25
+
```
26
+
27
+
To uninstall the package:
28
+
29
+
```bash
30
+
pip uninstall jupyterlab-chat
31
+
```
32
+
33
+
> [!NOTE]
34
+
> The extension was released as [jupyterlab-collaborative-chat](https://pypi.org/project/jupyterlab-collaborative-chat/) until version 0.5.0.
35
+
18
36
## Composition
19
37
20
38
### Typescript package
@@ -54,4 +72,4 @@ This extension has been moved to its own [repository](https://github.com/brichet
54
72
55
73
## Contributing
56
74
57
-
See the contributing part of each package for details.
75
+
See the contributing part of the [documentation](https://jupyter-chat.readthedocs.io/en/latest/developers/contributing/index.html).
0 commit comments