Metadata-Version: 2.4
Name: betarag
Version: 0.1.0
Summary: BRAG — Better RAG. Same API. Better results. Gets smarter over time.
Project-URL: Homepage, https://betarag.com
Project-URL: Documentation, https://betarag.com/docs
Project-URL: Repository, https://github.com/goldpolaris/brag-sdk
Author-email: Gold Polaris Holdings <dev@betarag.com>
License-Expression: MIT
Keywords: ai,knowledge-base,rag,retrieval,search
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# BRAG

Better RAG. Same API. Better results. Gets smarter over time.

## Install

```bash
pip install brag
```

## Use

```python
from brag import BRAG

brag = BRAG(api_key="brag_...")
results = brag.search("How do vector databases handle scaling?")

for r in results.results:
    print(r.name, r.score)
```

## Get a free API key

```python
key = BRAG.signup(email="you@example.com")
# Save it — shown only once
```

Or visit [betarag.com](https://betarag.com)

## Pricing

| Tier    | Price   | Queries/day |
| ------- | ------- | ----------- |
| Free    | $0      | 100         |
| Builder | $49/mo  | 5,000       |
| Oracle  | $199/mo | Unlimited   |
