Metadata-Version: 2.4
Name: jupyter-groq-soham
Version: 0.1.0
Summary: A Jupyter Notebook assistant powered by Groq LLMs
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/jupyter-groq-assistant
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: ipython
Requires-Dist: groq

# Jupyter Groq Assistant

A Python library to bring Groq's LLMs directly into your Jupyter Notebooks via simple magic commands (`%groq`, `%%groq_fix`).

## Installation

You can install this directly from Git (recommended to keep your API key private) or locally:

```bash
pip install .
```

## Setup

If you hardcoded your API key in `magics.py`, you're good to go! Otherwise, set it as an environment variable or pass it to the helper.

## Usage

Load the extension in any Jupyter Notebook:

```python
%load_ext jupyter_groq
```

Ask a question:
```python
%groq What is a decorator in Python?
```

Fix code in a cell:
```python
%%groq_fix
def add(a, b)
    return a + b
```
