You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to propose an abstraction that could help us unify different approaches. Right now, we have .well-known/agent-card.json as recommended in the spec, but in practice we're already seeing variations like IETF API Catalog, ORD, or registry-based discovery (including already-implemented external services and/or OSS) mechanisms.
To avoid hardcoding just one option, I suggest introducing a Connector/Resolver API for discovery.
This would allow us to support multiple discovery mechanisms in a vendor-neutral way, while keeping the SDK surface consistent.
For example, we could define pseudo-schemes that internally resolve to the appropriate HTTP endpoints and dispatch to the corresponding connector/resolver:
at the SDK level, implementing the corresponding API behavior based on the underlying discovery mechanism. Each connector/resolver would expose a common set of capabilities (e.g. resolve_agent, search_agent), returning not supported where the backend doesn't provide that feature.
This way, we don't have to "pick a winner" right now — SDKs can implement the abstraction once, and then support whichever discovery mechanisms the community agrees on over time. Would this be a reasonable direction to explore further?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Following up on the ongoing discovery discussions:
I'd like to propose an abstraction that could help us unify different approaches. Right now, we have
.well-known/agent-card.jsonas recommended in the spec, but in practice we're already seeing variations like IETF API Catalog, ORD, or registry-based discovery (including already-implemented external services and/or OSS) mechanisms.To avoid hardcoding just one option, I suggest introducing a Connector/Resolver API for discovery.
This would allow us to support multiple discovery mechanisms in a vendor-neutral way, while keeping the SDK surface consistent.
For example, we could define pseudo-schemes that internally resolve to the appropriate HTTP endpoints and dispatch to the corresponding connector/resolver:
In this model, the connector/resolver would effectively expose the Registry API discussed in:
at the SDK level, implementing the corresponding API behavior based on the underlying discovery mechanism. Each connector/resolver would expose a common set of capabilities (e.g.
resolve_agent,search_agent), returning not supported where the backend doesn't provide that feature.This way, we don't have to "pick a winner" right now — SDKs can implement the abstraction once, and then support whichever discovery mechanisms the community agrees on over time. Would this be a reasonable direction to explore further?
Beta Was this translation helpful? Give feedback.
All reactions