Metadata-Version: 2.4
Name: clrnoise
Version: 0.1.0
Summary: clrnoise — cut through the noise of academic literature with AI-powered reading and synthesis
Requires-Python: >=3.11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: claude
Requires-Dist: anthropic (>=0.40) ; extra == "claude"
Requires-Dist: django (>=6.0)
Description-Content-Type: text/markdown

# clrnoise

Cut through the noise of academic literature with AI-powered reading and synthesis.

## Installation

```bash
pip install clrnoise
# or with Claude AI support
pip install "clrnoise[claude]"
```

## Usage

```bash
# First-time setup
clrnoise migrate

# Run the server
clrnoise runserver
```

Then open http://localhost:8000 in your browser.

## Configuration

Set environment variables to configure AI backends:

```bash
# Use Anthropic Claude (recommended)
export ANTHROPIC_API_KEY=sk-ant-...

# Or use a local Ollama model (default if no API key set)
export OLLAMA_BASE_URL=http://localhost:11434
export OLLAMA_MODEL=llama3.1:8b
```

