Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions veadk/cloud/cloud_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def _get_a2a_client(self) -> A2AClient:
if self.use_agent_card:
async with self.httpx_client as httpx_client:
resolver = A2ACardResolver(
httpx_client=httpx_client, base_url=self.endpoint
httpx_client=httpx_client, base_url=self.vefaas_endpoint
)

final_agent_card_to_use: AgentCard | None = None
Expand All @@ -112,7 +112,7 @@ async def _get_a2a_client(self) -> A2AClient:
httpx_client=self.httpx_client, agent_card=final_agent_card_to_use
)
else:
return A2AClient(httpx_client=self.httpx_client, url=self.endpoint)
return A2AClient(httpx_client=self.httpx_client, url=self.vefaas_endpoint)

def update_self(
self,
Expand Down