Registri Python SDK — register, discover, and trust AI agents
Project description
Agent Registry SDK
Python SDK for the Agent Registry — register, discover, and trust AI agents.
Install
pip install agent-registry-sdk
Quick Start
from agent_registry_sdk import AgentRegistry
# Connect to the registry
registry = AgentRegistry("https://your-registry-url.com")
registry.login("username", "password")
# Register an agent
agent = registry.register(
name="my-agent",
description="Summarizes research papers",
capabilities=["text-summarization"],
)
# Discover agents
results = registry.find(capability="text-summarization")
# Rate an agent
registry.rate(agent.id, interaction_id="tx-1", score=4.5)
Async Support
from agent_registry_sdk import AsyncAgentRegistry
async with AsyncAgentRegistry("https://your-registry-url.com", token="...") as registry:
agents = await registry.find(capability="code-review")
See the quickstart guide for full documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
agent_registry_sdk-0.1.0.tar.gz
(10.4 kB
view details)
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_registry_sdk-0.1.0.tar.gz.
File metadata
- Download URL: agent_registry_sdk-0.1.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ddc1e170683327974db967898c66bf7f67945e5b53d759ca2f3aeaff0998c43
|
|
| MD5 |
497c259ff9cdf851e837ac64ecfcb1a9
|
|
| BLAKE2b-256 |
52d6fe6beb16ee432771951dcbf6374477f7d07a46ac17e6d83861eb98d91da9
|
File details
Details for the file agent_registry_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: agent_registry_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec8b0f4788de0a7ad9b2f78b8496a0dc67711d0bad9fb5bea41bf9c5946ebafa
|
|
| MD5 |
4880e87efc3ac2efd0d0790581670cc1
|
|
| BLAKE2b-256 |
2e51c590acc67f94ed361dd4afc636ab966ee7c5f2930f8ab79d1fb089c776a5
|