Metadata-Version: 2.4
Name: lenz-io
Version: 0.0.1
Summary: Official Python SDK for the Lenz Hallucination Verification API (preview)
Project-URL: Homepage, https://lenz.io
Project-URL: Documentation, https://lenz.io/api/v1/docs/
Project-URL: Repository, https://github.com/lenzhq/lenz-io-python
Author: Lenz
License-Expression: MIT
License-File: LICENSE
Keywords: api,fact-check,hallucination,lenz,llm,sdk
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# lenz-io

Official Python SDK for the [Lenz Hallucination Verification API](https://lenz.io).

**Status: preview placeholder.** The `1.0.0-rc.1` release lands soon at
[github.com/lenzhq/lenz-io-python](https://github.com/lenzhq/lenz-io-python).

In the meantime, the API is live and documented at
<https://lenz.io/api/v1/docs/>.

## What this will be

A thin, typed Python wrapper around the Lenz Public API v1, the fact-check
API for AI product teams.

```python
from lenz_io import Lenz

client = Lenz(api_key="lenz_...")
v = client.verify_and_wait(claim="Sharks don't get cancer")
print(v.verdict.label, v.verdict.score)
# false 2.0
```

Sources, audit trail, and webhook helpers included.

## License

MIT
