Metadata-Version: 2.4
Name: guardrails-ai-provenance-llm
Version: 0.0.2
Summary: A validator for ensuring the factuality and reducing brand risk in generated content.
Author: Guardrails AI
License-Expression: MIT
Project-URL: Homepage, https://guardrailsai.com
Project-URL: Repository, https://github.com/guardrails-ai/guardrails-hub-monorepo/tree/main/provenance_llm/py
Project-URL: Documentation, https://guardrails-ai.github.io/guardrails-hub-monorepo/autoapi/guardrails_ai/provenance_llm/index.html
Requires-Python: <4,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: guardrails-ai>=0.4.0
Requires-Dist: litellm<=1.82.6
Requires-Dist: nltk
Requires-Dist: numpy
Requires-Dist: tenacity
Requires-Dist: sentence-transformers
Provides-Extra: dev
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: coverage>=7.6.12; extra == "dev"
Requires-Dist: pyright[nodejs]>=1.1.396; extra == "dev"
Dynamic: license-file

# guardrails-ai-provenance-llm

A validator for ensuring the factuality and reducing brand risk in generated content.

## Installation

```bash
pip install guardrails-ai-provenance-llm
```

This validator ships local models. After installing, run the post-install step to download them:

```bash
python -m guardrails_ai.provenance_llm.post_install
```

## Usage

```python
from guardrails import Guard
from guardrails_ai.provenance_llm import ProvenanceLLM

guard = Guard().use(ProvenanceLLM)
```

## License

MIT — © Guardrails AI.
