Metadata-Version: 2.1
Name: gpt_jupyterlab
Version: 0.1.4
Summary: Use OpenAI GPT models for text and code completion on your notebook cells
Project-URL: Homepage, https://github.com/henshinger/gpt-jupyterlab
Project-URL: Bug Tracker, https://github.com/henshinger/gpt-jupyterlab.git/issues
Project-URL: Repository, https://github.com/henshinger/gpt-jupyterlab.git
Author-email: Kenley Tan <kenley.tan@hey.com>
License: BSD 3-Clause License
        
        Copyright (c) 2023, Kenley
        All rights reserved.
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this
           list of conditions and the following disclaimer.
        
        2. Redistributions in binary form must reproduce the above copyright notice,
           this list of conditions and the following disclaimer in the documentation
           and/or other materials provided with the distribution.
        
        3. Neither the name of the copyright holder nor the names of its
           contributors may be used to endorse or promote products derived from
           this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License-File: LICENSE
Classifier: Framework :: Jupyter
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Framework :: Jupyter :: JupyterLab :: 3
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Requires-Dist: jupyter-server<3,>=1.21
Requires-Dist: openai
Requires-Dist: tenacity
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-asyncio; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-jupyter[server]>=0.6.0; extra == 'test'
Description-Content-Type: text/markdown

# gpt_jupyterlab

[![Github Actions Status](https://github.com/henshinger/gpt-jupyterlab/workflows/Build/badge.svg)](https://github.com/henshinger/gpt-jupyterlab/actions/workflows/build.yml)
A JupyterLab extension.

GPT JupterLab is a JupyterLab extension to use OpenAI’s GPT models for text and code completion on your notebook cells.

This extension passes your current notebook cell to the GPT API and completes your code/text for you. You can customize the GPT parameters in the Advanced Settings menu.

This extension is composed of a Python package named `gpt_jupyterlab`
for the server extension and a NPM package named `gpt_jupyterlab`
for the frontend extension.

**Note: You will need your own OpenAI API Key to use this extension. You can get them in the [API Key page](https://beta.openai.com/account/api-keys), which requires an OpenAI account.**

https://user-images.githubusercontent.com/1387307/214353795-d867d9d1-caee-4494-a2ee-14d5f12005e7.mp4

## Install

To install the extension, execute:

```bash
pip install gpt_jupyterlab
```

It should now appear on your installed extensions list.

![extensions](https://user-images.githubusercontent.com/1387307/214115261-096c83a7-4d56-4cfe-bbd6-7244d1869ce6.png)

**Note: Make sure that you have enabled extensions. You may also need to restart the server(not the kernel) to make sure that it runs properly.**

### Installing in GCP Vertex Workbench

**1. Create new notebook**

![create-new-notebook](https://user-images.githubusercontent.com/1387307/214115423-1330d1a0-bb1d-4824-9270-487736f34356.png)

**2. Run `pip install gpt_jupyterlab`**

![install-gpt-jupyterlab](https://user-images.githubusercontent.com/1387307/214115339-f9018a68-7a50-4cff-828a-bee0280addee.png)

**3. Enable extensions**

![enable-extensions](https://user-images.githubusercontent.com/1387307/214115314-3406694c-8558-4009-bd2a-dbf248868331.png)

You should see `gpt_jupyterlab` installed, but you need to restart the server to make

![extension-list](https://user-images.githubusercontent.com/1387307/214115261-096c83a7-4d56-4cfe-bbd6-7244d1869ce6.png)

**4. Restart the notebook**

Stop the notebook

![stop-server](https://user-images.githubusercontent.com/1387307/214115243-41de417c-c55f-43ba-a29d-c9b6780a2e56.png)

Start the notebook

![start-notebook](https://user-images.githubusercontent.com/1387307/214115508-d2e8db95-b893-4dd2-814f-3cd4b18f1f47.png)

You should be able to see the GPT button and be able to make queries.

![button-visible](https://user-images.githubusercontent.com/1387307/214115494-9f2c2d1a-b5ed-4fc7-a9f8-425b40f12d27.png)

## Uninstall

To remove the extension, execute:

```bash
pip uninstall gpt_jupyterlab
```

## Getting Started

There are three ways to prompt the GPT API.

**1. Use the GPT Button in the Toolbar**

![GPT Button Screenshot](https://user-images.githubusercontent.com/1387307/213923948-863b7e28-f956-4c8c-b27b-959551952b39.png)

**2. Click `GPT Completion` under the `Edit` Menu**

![GPT Menu Screenshot](https://user-images.githubusercontent.com/1387307/213923950-bacaf820-ecb2-4220-984f-cd2b8bd69ce5.png)

**3. Use the `Ctrl`+`Space`(Windows)/`Cmd`+`Space`(Mac) Keyboard Shortcut**

![GPT Menu Screenshot](https://user-images.githubusercontent.com/1387307/213923950-bacaf820-ecb2-4220-984f-cd2b8bd69ce5.png)

## How to Change Your Settings

**Go to the `Settings` Menu and click `Advanced Settings Editor`**

![Advanced Settings Editor](https://user-images.githubusercontent.com/1387307/213924568-76b150f5-9def-427b-8a89-22ef357758ff.png)

**Click `gpt_jupyterlab` in the left sidebar**

![GPT JupyterLab Settings](https://user-images.githubusercontent.com/1387307/213924690-2df6cb67-1197-433f-afe7-42af3474767d.png)

## Troubleshoot

If you are seeing the frontend extension, but it is not working, check
that the server extension is enabled:

```bash
jupyter server extension list
```

If the server extension is installed and enabled, but you are not seeing
the frontend extension, check the frontend extension is installed:

```bash
jupyter labextension list
```

## Contributing

### Development install

Note: You will need NodeJS to build the extension package.

The `jlpm` command is JupyterLab's pinned version of
[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
`yarn` or `npm` in lieu of `jlpm` below.

```bash
# Clone the repo to your local environment
# Change directory to the gpt_jupyterlab directory
# Install package in development mode
pip install -e ".[test]"
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Server extension must be manually installed in develop mode
jupyter server extension enable gpt_jupyterlab
# 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.

```bash
# 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:

```bash
jupyter lab build --minimize=False
```

### Development uninstall

```bash
# Server extension must be manually disabled in develop mode
jupyter server extension disable gpt_jupyterlab
pip uninstall gpt_jupyterlab
```

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 `gpt_jupyterlab` within that folder.

### Testing the extension

#### Server tests

This extension is using [Pytest](https://docs.pytest.org/) for Python code testing.

Install test dependencies (needed only once):

```sh
pip install -e ".[test]"
# Each time you install the Python package, you need to restore the front-end extension link
jupyter labextension develop . --overwrite
```

To execute them, run:

```sh
pytest -vv -r ap --cov gpt_jupyterlab
```

#### Frontend tests

This extension is using [Jest](https://jestjs.io/) for JavaScript code testing.

To execute them, execute:

```sh
jlpm
jlpm test
```

#### Integration tests

This extension uses [Playwright](https://playwright.dev/docs/intro) for the integration tests (aka user level tests).
More precisely, the JupyterLab helper [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) is used to handle testing the extension in JupyterLab.

More information are provided within the [ui-tests](./ui-tests/README.md) README.

### Packaging the extension

See [RELEASE](RELEASE.md)
