Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion contributing/samples/a2a_basic/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def roll_die(sides: int) -> int:
name="prime_agent",
description="Agent that handles checking if numbers are prime.",
agent_card=(
f"http://localhost:8001/a2a/check_prime_agent{AGENT_CARD_WELL_KNOWN_PATH}"
f"http://localhost:8001/a2a/check_prime_agent/.well-known/agent-card.json"
),
)

Expand Down
2 changes: 1 addition & 1 deletion contributing/samples/a2a_root/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
description=(
"Helpful assistant that can roll dice and check if numbers are prime."
),
agent_card=f"http://localhost:8001/{AGENT_CARD_WELL_KNOWN_PATH}",
agent_card=f"http://localhost:8001{AGENT_CARD_WELL_KNOWN_PATH}",
)
Loading