Metadata-Version: 2.4
Name: asuriq
Version: 1.0.0
Summary: ASURIQ Python SDK — verify AI answers against 21 databases
Author: Silent Ampersand LLC
License: MIT
Project-URL: Homepage, https://asuriq.dev
Project-URL: Documentation, https://asuriq.dev/api-docs
Project-URL: Repository, https://github.com/duke-of-beans/ASURIQ
Keywords: ai,verification,hallucination,fact-checking,llm
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# asuriq

Verify AI answers against 21 databases. Hallucination detection. Entity verification.

```python
from asuriq import Asuriq

client = Asuriq()
result = client.check("Your AI response text here", query="The original question")

print(f"Confidence: {result.confidence.score}")
print(f"Hallucination risk: {result.hallucination.risk}")

for entity in result.entities:
    print(f"  {entity.entity} ({entity.type}): {entity.status}")
```

## Install

```bash
pip install asuriq
```

## Methods

- `client.check(text, query=None, tier="protocol")` — Full verification analysis
- `client.deliberate(text, query=None)` — Multi-model deliberation
- `client.health()` — Engine status
- `client.ghost()` — Self-model metrics
- `client.metabolism()` — Token usage stats

## Links

- [asuriq.dev](https://asuriq.dev)
- [API docs](https://asuriq.dev/api-docs)
- [All integrations](https://asuriq.dev/integrations)
