Metadata-Version: 2.4
Name: tokencrush-langraph
Version: 0.1.0
Summary: LangGraph module wrapping TokenCrush /v1/crush
Author: Your Name
License: MIT
Project-URL: Homepage, https://github.com/your-org/tokencrush-langraph
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: langgraph>=0.2.30
Requires-Dist: pydantic<3,>=2.5
Requires-Dist: httpx>=0.27.0

## tokencrush-langraph

LangGraph module that wraps the TokenCrush `/v1/crush` API.

### Install (dev)
```bash
python -m venv .venv && source .venv/bin/activate
pip install -U pip build
pip install -e .
```

### Usage
```bash
export TOKENCRUSH_API_KEY="your-tokencrush-api-key"
python examples/simple_crush.py
```

### API
- `build_tokencrush_graph(api_key, base_url=None, fallback_to_input=False) -> CompiledGraph`
- `crush(api_key, prompt, base_url=None, fallback_to_input=False) -> dict`


