Metadata-Version: 2.4
Name: jupyter-gemini-copilot
Version: 0.1.3
Summary: A lightweight AI code assistant running inside Jupyter notebooks using Gemini.
Author: Soham Saranga
Description-Content-Type: text/markdown
Requires-Dist: ipython>=7.0.0

# Jupyter Gemini Copilot 🚀🧠

A mini AI code assistant that runs directly inside your Jupyter Notebooks. It hooks into IPython's execution cycle and automatically wakes up and uses Google Gemini to suggest the correct fixed/completed code whenever you run cells with incomplete or erroneous code (like `SyntaxError` or `NameError`).

## Installation

```bash
pip install jupyter-gemini-copilot
```

## Usage

In your Jupyter Notebook, just run the following in the first cell:

```python
import jupyter_gemini_copilot

# Enter your Gemini API key here
jupyter_gemini_copilot.setup(api_key="YOUR_GEMINI_API_KEY")
```

Now, whenever you accidentally write code that produces an error (e.g., missing a parenthesis or using an undefined variable), Gemini will automatically catch it and instantly print the correct, completed code directly underneath the traceback!
