Metadata-Version: 2.4
Name: nurricai
Version: 0.1.1
Summary: Python client for the ACRA API — Adaptive Contextual Retrieval Architecture
Author-email: NurricAI <hello@nurricai.com>
License: MIT
Project-URL: Homepage, https://nurricai.com
Project-URL: Repository, https://github.com/nurricai/nurricai-python
Keywords: rag,retrieval,llm,acra,nurricai,ai
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
Requires-Dist: httpx>=0.24.0

# nurricai
Python client for the ACRA API.

```bash
pip install nurricai
```

```python
from nurricai import ACRA
acra = ACRA(api_key='nacra-...')
acra.ingest(['Your document...'])
r = acra.query('What does it say?')
print(r.answer)
```
