We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be84dd commit 55d2566Copy full SHA for 55d2566
1 file changed
veadk/cloud/cloud_app.py
@@ -99,7 +99,7 @@ async def _get_a2a_client(self) -> A2AClient:
99
if self.use_agent_card:
100
async with self.httpx_client as httpx_client:
101
resolver = A2ACardResolver(
102
- httpx_client=httpx_client, base_url=self.endpoint
+ httpx_client=httpx_client, base_url=self.vefaas_endpoint
103
)
104
105
final_agent_card_to_use: AgentCard | None = None
@@ -112,7 +112,7 @@ async def _get_a2a_client(self) -> A2AClient:
112
httpx_client=self.httpx_client, agent_card=final_agent_card_to_use
113
114
else:
115
- return A2AClient(httpx_client=self.httpx_client, url=self.endpoint)
+ return A2AClient(httpx_client=self.httpx_client, url=self.vefaas_endpoint)
116
117
def update_self(
118
self,
0 commit comments