A2A conformant
A2A vunknown
DocuSeal
v1.0.0• DocuSeal LLC
DocuSeal knowledge base. Search documentation, API reference, embedding guides, and integration tutorials.
Skills
-
Search
Semantic search across DocuSeal knowledge base. Returns titles, URLs, and short descriptions. Use this tool first to find relevant documentation, then use load_resource to read full page content. You can call multiple search tools in parallel for completely different topics.
documentation -
Load Resource
Load the full content of a documentation page by its URL. Use URLs from search results to read complete documentation.
documentation
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("dfa80351-cfe3-45a0-a1e7-532eb32c98ee")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())