Metadata-Version: 2.4
Name: agentavow-agt
Version: 0.2.0
Summary: AgentAvow (formerly agentgraph-agt) trust provider for Microsoft Agent Governance Toolkit
Project-URL: Homepage, https://agentavow.com
Project-URL: Documentation, https://agentavow.com/docs
Project-URL: Repository, https://github.com/AgentAvow/agentgraph
License-Expression: MIT
Keywords: agentavow,agentgraph,agentmesh,agents,agt,trust
Requires-Python: >=3.9
Requires-Dist: httpx>=0.25
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# agentavow-agt

> **Formerly `agentgraph-agt`.** This distribution is now published as **`agentavow-agt`**. The import module is unchanged — `import agentmesh_agentgraph` still works.

AgentAvow trust provider for [Microsoft Agent Governance Toolkit (AGT)](https://github.com/microsoft/agentmesh).

## Installation

```bash
pip install agentgraph-agt
```

## Usage

```python
from agentmesh_agentgraph import AgentGraphTrustProvider

provider = AgentGraphTrustProvider(base_url="https://agentgraph.co")

# Check if an agent meets a trust threshold
result = await provider.evaluate_trust("agent-id-here")
print(result.score, result.tier, result.meets_threshold)

# Get trust metadata for governance decisions
metadata = await provider.get_trust_metadata("agent-id-here")
```

## How it works

This adapter implements the AGT `TrustProvider` interface, allowing AgentGraph's trust scores to be used as a governance signal in Microsoft's Agent Governance Toolkit. It queries the AgentGraph API for trust scores, tiers, and verification status.

## License

MIT
