Metadata-Version: 2.4
Name: jupyter-ai-debugger
Version: 0.1.0
Summary: AI-assisted error debugger with OpenRouter model fallback for Jupyter.
Author: Your Name
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourname/jupyter_ai_debugger
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: ipython
Dynamic: license-file

# jupyter_ai_debugger

AI-assisted error debugger for Jupyter notebooks using OpenRouter with automatic model fallback.

## Features
- Hooks into Jupyter/IPython exceptions
- Sends error + code to OpenRouter AI
- Returns explanation and corrected code
- Auto-suggests corrected code into next cell

## Installation
```bash
pip install jupyter-ai-debugger
```

## Usage
Set your API key as an environment variable:
```bash
export OPENROUTER_API_KEY="your_key_here"
```

Or pass it directly in Python:
```python
from jupyter_ai_debugger import AIDebugger
AIDebugger(api_key="your_key").activate()
```

Now any error in Jupyter will trigger AI debugging suggestions!

## License
MIT
