Skip to main content

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

  1. 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"
)
  1. 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.9rc10.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

distributed_a2a-0.1.9rc10-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file distributed_a2a-0.1.9rc10.tar.gz.

File metadata

  • Download URL: distributed_a2a-0.1.9rc10.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for distributed_a2a-0.1.9rc10.tar.gz
Algorithm Hash digest
SHA256 f8a6bb1d86041f3d26541496b377932abd6fa686b204dc3dd92fb0b2f6f102bd
MD5 ae2d3dc3c6c7ce06f3e6068503909db7
BLAKE2b-256 eda1506e72ef45287f4f24d3c85700cb6c685a0ea0b1063d6dd18fb3bd0165ab

See more details on using hashes here.

File details

Details for the file distributed_a2a-0.1.9rc10-py3-none-any.whl.

File metadata

File hashes

Hashes for distributed_a2a-0.1.9rc10-py3-none-any.whl
Algorithm Hash digest
SHA256 7f606d62839b16287b8ee9d50b6d6fdeaaa29c0f8f7e241bb4baf5a494dcbce6
MD5 10aaa7a2260379877a5da6b6d76b7c73
BLAKE2b-256 e5b0cf118b67c0ee8bfd3a5a1494238ba537ac86361f8a338ce44ef8a12b452b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page