AI chat for JupyterLab
Project description
mito_ai
AI chat for JupyterLab. This codebase contains two main components:
- A Jupyter server extension that handles the backend logic for the chat.
- Several JupyterLab extensions that handle the frontend logic for interacting with the AI, including the chat sidebar and the error message rendermime.
Requirements
- JupyterLab >= 4.0.0
Install
To install the extension, execute:
pip install mito-ai
Configuration
This extension has two AI providers; OpenAI and Mito (calling OpenAI).
Mito is the fallback but the number of request is limited for free tier.
To use OpenAI directly, you will to create an API key on https://platform.openai.com/docs/overview.
Then set the environment variable OPENAI_API_KEY with that key.
The OpenAI model can be configured with 1 parameters:
OpenAIProvider.model: Name of the AI model; default gpt-4o-mini.
You can set those parameters through command line when starting JupyterLab; e.g.
jupyter lab --OpenAIProvider.max_completion_tokens 20 --OpenAIProvider.temperature 1.5
If a value is incorrect, an error message will be displayed in the terminal logs.
Uninstall
To remove the extension, execute:
pip uninstall mito-ai
Contributing
Development install
To ensure consistent package management, please use jlpm instead of npm for this project.
Note: You will need NodeJS to build the extension package.
The jlpm command is JupyterLab's pinned version of
yarn that is installed with JupyterLab.
# Clone the repo to your local environment
# Change directory to the mito-ai directory
# Required to deal with Yarn 3 workspace rules
touch yarn.lock
# Install package in development mode
pip install -e ".[test]"
# Install the node modules
jlpm install
# Build the extension
jlpm build
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Start the jupyter server extension for development
jupyter server extension enable --py mito_ai
# (Optional) Setup fixed Jupyter token for Cursor agent testing
# This creates a development-only config that allows Cursor to automatically test changes
python dev/setup_jupyter_dev_token.py
# Watch the source directory in one terminal, automatically rebuilding when needed
# In case of Error: If this command fails because the lib directory was not created (the error will say something like
# unable to find main entry point) then run `jlpm run clean:lib` first to get rid of the old buildcache
# that might be preventing a new lib directory from getting created.
jlpm watch
Then, in a new terminal, run:
# Run JupyterLab in another terminal
jupyter lab --autoreload
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. With the --autoreload flag, you don't need to refresh JupyterLab to load the change in your browser. It will launch a new window each time you save a change to the backend.
By default, the jlpm build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=False
Development uninstall
pip uninstall mito-ai
In development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list to figure out where the labextensions
folder is located. Then you can remove the symlink named mito-ai within that folder.
Testing the extension
Integration tests
Integration tests for mito-ai are written using Playwright and Gelata in the mito/tests directory.
To run these tests, follow the directions in the tests/README.md file.
Backend Unit tests
Backend tests for mito-ai are written using pytest in the mito/mito-ai/mito_ai/tests directory.
To run the pytests, just run pytest in the mito-ai directory.
Backend Mypy tests
To run the mypy tests, just run mypy mito_ai/ --ignore-missing-imports in the mito-ai directory.
Frontend Unit tests
Frontend unit tests for mito-ai are written using Jest in the mito/mito-ai/src/tests directory.
To run the Jest tests, just run npm test in the mito-ai directory.
Frontend Tests
Frontend tests for mito-ai are written using Playwright and Gelata in the mito/tests directory. See the tests/README.md file for more information.
Frontend Linting
Frontend linting for mito-ai is done using ESLint in the mito-ai directory.
To run the ESLint tests, just run jlpm eslint in the mito-ai directory.
Performance Tests
Performance tests for mito-ai are written using pytest in the mito-ai/tests directory.
To run the performance tests, just run python -m pytest mito_ai/tests/performance_test.py -v -s in the mito-ai directory.
Note that you'll have to edit open_ai_utils.py, specifically the is_running_test condition.
Running Databases
To ensure reproducibility, databases, like Postgres, are created using Docker. To run:
docker-compose -f mito_ai/tests/docker/postgres.yml up
When you're done, stop and remove the container and its volumes with:
docker-compose -f mito_ai/tests/docker/postgres.yml down -v
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mito_ai-0.1.64.tar.gz.
File metadata
- Download URL: mito_ai-0.1.64.tar.gz
- Upload date:
- Size: 16.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99414009bf00af793f68611352bea3fcb2d990c5cc67d6c9b1682cc828895fbc
|
|
| MD5 |
1c33e84454686565bb9bef56a479e34f
|
|
| BLAKE2b-256 |
209259f90043cee0842822eefc2caa80bebf4945127861cd44c1ed6e8bc78a73
|
File details
Details for the file mito_ai-0.1.64-py3-none-any.whl.
File metadata
- Download URL: mito_ai-0.1.64-py3-none-any.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7a951a5f1e528b1e58be794ed6dda84862ebb0a94a087f2f4bb1ea12dfcda17
|
|
| MD5 |
cd44519082cbbdbd81d923cf4095bf7f
|
|
| BLAKE2b-256 |
abc6d17de3e2db14fac89da9a49ee85b33ef723454fe70f0d8c56b3492a4ee2e
|