A Natural Language-Based Python Program Interpreter
Project description
Please check our latest blogpost on Chapyter release.
What is Chapyter
Chapyter is a JupyterLab extension that seamlessly connects GPT-4 to your coding environment. It features a code interpreter that can translate your natural language description into Python code and automatically execute it. By enabling "natural language programming" in your most familiar IDE, Chapyter can boost your productivity and empower you to explore many new ideas that you would not have tried otherwise.
Functionality | Example |
---|---|
Code generation from natural language and automatic execution Simply adding the magic command %%chat at the beginning of the cell of a natural language description of the task, the code is generated and the results are shown in a few seconds. |
|
Using coding history and execution output for code generation By adding the --history or -h flag in generation, chapyter can use the previous execution history and outputs to generate the appropriate visualization for the loaded IRIS dataset. |
|
In-situ debugging and code editing The generated code might not be perfect and could contain bugs or errors. Since Chapyter is fully integrated into Jupyter Notebook, you can easily inspect the code and fix any errors or bugs (e.g., installing missing dependencies in this case) without leaving the IDE. |
|
Transparency on the prompts and AI configuration and allows for customization | We release all the prompts used in our library and we are working on easy customization of the used prompts and settings. See in chapyter/programs.py. |
Privacy-first when using latest powerful AI | Since we are using OpenAI API, all the data sent to OpenAI will not be saved for training (see OpenAI API Data Usage Policies). As a comparison, whenever you are using Copilot or ChatGPT, your data will be somewhat cached and can be used for their training and analysis. |
Quick Start
-
Installation
pip install chapyter # Automatically installs the extension to jupyterlab pip uninstall chapyter # Uninstalls the extension from jupyterlab
Note: It will upgrade the jupyterlab to ≥ 4.0. It might break your environments.
-
Usage: see examples/01-quick-start.ipynb for a starter notebook.
- Set the proper
OPENAI_API_KEY
andOPENAI_ORGANIZATION
in the environment variable - Use the magic command
%%chat
in a code cell:
It will call gpt-4-0613 to generate the python code for listing all the files in the folder, and execute the generated code automatically. In this case, this plugin serves as the interpreter that translates the natural language to python code and execute it.%%chat -m gpt-4-0613 List all the files in the folder
- Set the proper
-
Examples:
- examples/01-quick-start.ipynb illustrates the basic functions of
chapyter
, including how to use the magic command%%chat
- examples/02-configure-chapyter.ipynb shows how to customize
chapyter
:- Use different default models (e.g., gpt-3.5-turbo instead of gpt-4)
- Use different types of API (now we support use the default OpenAI API or the Azure OpenAI API)
- examples/01-quick-start.ipynb illustrates the basic functions of
Development Notes
There are two major components in Chapyter: implementing the ipython magic command that handles the prompting and calling GPT-X models, and the frontend that listens to Chapyter cell execution and automatically executes the newly generated cell and updates the cell styles. The chart below illustrates the orchestration of the frontend and ipython kernel after a Chapyter cell is executed.
Details
-
NodeJS is needed to build the extension package.
-
The
jlpm
command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may useyarn
ornpm
in lieu ofjlpm
below.# Clone the repo to your local environment # Change directory to the chapyter directory # Install package in development mode pip install -e "." # Link your development version of the extension with JupyterLab jupyter labextension develop . --overwrite # Rebuild extension Typescript source after making changes jlpm build
-
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
# Watch the source directory in one terminal, automatically rebuilding when needed jlpm watch # Run JupyterLab in another terminal jupyter lab
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
-
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
-
Packaging and release: please refer to RELEASE.
Project details
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
File details
Details for the file chapyter-0.3.0.tar.gz
.
File metadata
- Download URL: chapyter-0.3.0.tar.gz
- Upload date:
- Size: 148.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee60db3230881a7c3c976330c5b7907079cdf1b3ca087498618db412d532e234 |
|
MD5 | f49cdc08e17ff04a23474c304f9938fd |
|
BLAKE2b-256 | e83dc06f708d91c38d135c441f26d6793cec36e5b38b2e8394237283c0283391 |
File details
Details for the file chapyter-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: chapyter-0.3.0-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aee75216812eb789c7890298afad1a89efad7be1501faabc475edcfd97900254 |
|
MD5 | 8fe66a4c9a39f78cfa337881ec447c4b |
|
BLAKE2b-256 | 764612128a065e1bffff12100f35fd5717cd270bde7ca5e970cad358b1f5fa6d |