Python SDK for Agent Passport - AI Agent compliance proof system for EU AI Act Art.50
Project description
Agent Passport SDK
5-minute EU AI Act Art.50 compliance for AI Agents on Base.
Agent Passport is a compliance proof system that helps platforms ensure every AI agent they interact with carries verifiable proof of regulatory compliance — starting with Art.50 disclosure obligations.
Install
pip install agent-passport-agl
Quick Start
from agent_passport import AgentPassportClient, passport_guard, set_default_client
# Initialize (read-only)
client = AgentPassportClient(rpc_url="https://mainnet.base.org")
set_default_client(client)
# Protect your agent handler with one decorator
@passport_guard(required_scope=1) # attribute_type=1 for Art.50
def handle(agent_id, query):
return f"Compliant response to: {query}"
Register an Agent
client = AgentPassportClient(
rpc_url="https://mainnet.base.org",
private_key="0xYOUR_KEY"
)
agent_id = client.register_agent(
name="MyAgent",
operator="0xYourAddress",
metadata_uri="https://example.com/metadata.json"
)
print(f"Registered agent with ID: {agent_id}") # uint256, starts at 1
Art.50 Disclosure
from agent_passport import Art50ComplianceChecker
checker = Art50ComplianceChecker(client)
header = checker.generate_disclosure_header(agent_id, interaction_type="chat")
# => X-AI-Disclosure: agent=1; compliant=true; compliance_level=2; type=chat
Deployed Contracts (Base Mainnet)
| Contract | Address |
|---|---|
| AgentRegistry | 0xbeeFd54855e133055c6C5be8fD6549c3Fd92e0D9 |
| AgentPassport | 0x5eBD4fCE45754c34557a237dd59cecec7A410c87 |
| AccessGateway | 0xC46C3538Ea1Ea3dc41b762A2b298DD3C4cc65594 |
| CompliancePassport | 0x1A086e034C7020CFE12d1ff8082Fc6aeD5787680 |
Features
@passport_guard— Decorator to enforce compliance checks on any handlerArt50ComplianceChecker— Check compliance status and generate disclosure headersDelegationManager— Create and verify agent delegation proofs via EIP-712- Read-only mode — No private key needed for verification and queries
- V2 Contracts — All ABIs matched to actual on-chain deployments on Base Mainnet
API Overview
AgentPassportClient
| Method | Description |
|---|---|
register_agent(name, operator, metadata_uri) |
Register a new agent, returns int agentId |
get_agent(agent_id) |
Get agent info → AgentInfo(owner, agent_wallet, agent_uri, registered_at, active) |
issue_attestation(agent_id, attribute_type, attribute_value, schema_uri, valid_until) |
Issue attestation (requires VERIFIER_ROLE) |
get_attestation(attestation_id) |
Get attestation details → AttestationInfo |
get_agent_attestation_ids(agent_id) |
List attestation IDs for an agent |
verify_agent(agent_wallet, message, signature) |
Verify proof of agent → (is_valid, agent_id) |
get_certificate(cert_id) |
Get compliance certificate → CertificateInfo |
get_agent_certificate_ids(agent_id) |
List certificate IDs for an agent |
get_compliance_status(agent_id) |
Get all certificates for an agent |
issue_certificate(...) |
Issue certificate (requires SCORER_ROLE) |
record_risk_score(...) |
Record risk score (requires SCORER_ROLE) |
Links
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agent_passport_agl-0.3.0.tar.gz.
File metadata
- Download URL: agent_passport_agl-0.3.0.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0254017bdaea6178190562ce1b117e56bdce70f4627999712d244666288cd32
|
|
| MD5 |
67e5721203ebf9fd6e4bea9484629f58
|
|
| BLAKE2b-256 |
a8f59dd97d00a322d0392d23e39a8b160a231fdf6feaa3496a671cffae6c8d5c
|
File details
Details for the file agent_passport_agl-0.3.0-py3-none-any.whl.
File metadata
- Download URL: agent_passport_agl-0.3.0-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8629046c8eed7dd05a43806d368821a49db51d50b521c86c373b5ffe210ea19
|
|
| MD5 |
60d13046bb74a4114000df63e932e482
|
|
| BLAKE2b-256 |
d0f38b5c2bca5bffdaa59ca3fe183c11ee9612cb962cd69b0c8b04d2c507c56f
|