a2a_client/
constants.rs

1//! Constants for the A2A client
2
3/// Default path to the agent card as per A2A specification
4pub const AGENT_CARD_PATH: &str = ".well-known/agent-card.json";
5
6/// JSON-RPC version
7pub const JSONRPC_VERSION: &str = "2.0";