A2A conformant
A2A v0.3.0
Hello World Agent
v1.0.0• A2A Registry Team
A simple A2A agent that responds with 'Hello World' to any request
Skills
-
Say Hello
Responds with a friendly 'Hello World' message
greetinghellosimple
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("da3b9b9f-7c8f-497b-8d9d-38d9047f2de4")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())