A library for building A2A agents with routing capabilities
Project description
A2A Agent Library
A Python library for building A2A (Agent-to-Agent) agents with routing capabilities, DynamoDB-backed registry, and LangChain integration.
Features
- StatusAgent: Base agent implementation with status tracking and structured responses
- RoutingAgentExecutor: Agent executor with intelligent routing capabilities
- DynamoDB Registry: Dynamic agent card registry with heartbeat mechanism
- Server Utilities: FastAPI application builder with A2A protocol support
- LangChain Integration: Built on LangChain for flexible model integration
Installation
pip install distributed-a2a
Quick Start
- Start a server with your agent application:
from distributed_a2a import load_app
from a2a.types import AgentSkill
# Define your agent's skills
skills = [
AgentSkill(
id='example_skill',
name='Example Skill',
description='An example skill',
tags=['example']
)
]
# Create your agent application
app = load_app(
name="MyAgent",
description="My specialized agent",
skills=skills,
api_key="your-api-key",
system_prompt="You are a helpful assistant...",
host="http://localhost:8000"
)
- Send a request with the client
from uuid import uuid4
from distributed_a2a import RoutingA2AClient
if __name__ == "__main__":
import asyncio
request = "Tell me the weather in Bonn"
client = RoutingA2AClient("http://localhost:8000")
response: str = asyncio.run(client.send_message(request, str(uuid4())))
print(response)
Requirements
- Python 3.10+
- langchain
- langchain-core
- langchain-openai
- langgraph
- pydantic
- boto3
- a2a
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
distributed_a2a-0.1.9rc8.tar.gz
(11.5 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 distributed_a2a-0.1.9rc8.tar.gz.
File metadata
- Download URL: distributed_a2a-0.1.9rc8.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98ab760c4d9ac908ad72b7d832dd13c1ad7308342c279a67e7b0af1069c3aa35
|
|
| MD5 |
c71b1669273cf9b32b2f02515de9a1a5
|
|
| BLAKE2b-256 |
ab456faea93ab39600581f6bd48e75f4f9e07b4e74212cdfdd18c87526b13d68
|
File details
Details for the file distributed_a2a-0.1.9rc8-py3-none-any.whl.
File metadata
- Download URL: distributed_a2a-0.1.9rc8-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7757b37a2d367cd32c43c5d3cc9e88679d9bd3898acc0c3e46061f0f4e9394d
|
|
| MD5 |
856dacf8e5c9f04198ac0d3b280c5127
|
|
| BLAKE2b-256 |
be4ca14bf80e6714913a0a57acc9fb055956bc6ca1a7d30ad4db7173fb692d27
|