We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1c4ef commit 5ccf7c3Copy full SHA for 5ccf7c3
src/a2a/client/client_factory.py
@@ -144,7 +144,10 @@ async def connect( # noqa: PLR0913
144
if not client_config.httpx_client:
145
async with httpx.AsyncClient() as client:
146
resolver = A2ACardResolver(client, agent)
147
- card = await resolver.get_agent_card()
+ card = await resolver.get_agent_card(
148
+ relative_card_path=relative_card_path,
149
+ http_kwargs=resolver_http_kwargs,
150
+ )
151
else:
152
resolver = A2ACardResolver(client_config.httpx_client, agent)
153
card = await resolver.get_agent_card(
0 commit comments