Metadata-Version: 2.4
Name: hlido
Version: 0.1.0
Summary: Hlido — independent, evidence-backed trust scores for AI agents. Umbrella package; today it installs the hlido-trust agent-vetting tools (CrewAI + LangChain).
Author-email: Hlido <hello@hlido.eu>
License: MIT
Project-URL: Homepage, https://hlido.eu
Project-URL: Documentation, https://hlido.eu/api/
Project-URL: Source, https://github.com/ankitkapur1992-hlido/hlido-public/tree/main/integrations/hlido
Project-URL: Issues, https://github.com/ankitkapur1992-hlido/hlido-public/issues
Keywords: ai,agents,trust,evaluation,reliability,crewai,langchain,hlido,mcp
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: hlido-trust>=0.1.0
Provides-Extra: crewai
Requires-Dist: hlido-trust[crewai]>=0.1.0; extra == "crewai"
Provides-Extra: langchain
Requires-Dist: hlido-trust[langchain]>=0.1.0; extra == "langchain"

# hlido

**Independent, evidence-backed trust scores for AI agents** — from [Hlido](https://hlido.eu).

This is the umbrella package for Hlido's Python tooling. Today it installs and
re-exports [`hlido-trust`](https://pypi.org/project/hlido-trust/) — drop-in
agent-vetting tools for **CrewAI** and **LangChain**, plus a zero-dependency
client — so you can *vet an agent before you delegate to it*.

```bash
pip install hlido               # core (pulls hlido-trust)
pip install "hlido[crewai]"     # + CrewAI tools
pip install "hlido[langchain]"  # + LangChain tools
```

```python
from hlido import HlidoClient

hlido = HlidoClient()
if not hlido.trust_gate("aider", min_score=70):
    raise RuntimeError("Aider failed the Hlido trust gate — not delegating.")
```

Full docs, the framework adapters, and examples live with the focused package:
**[`hlido-trust`](https://github.com/ankitkapur1992-hlido/hlido-public/tree/main/integrations/hlido-trust)**.

As Hlido's Python surface grows, the full SDK will live under this same `hlido`
namespace.

## License

MIT · Hlido <hello@hlido.eu> · <https://hlido.eu>
