Stock Price Agent
Agent ID: stock-price-agent
Task Description:
Fetch the current market price for a specified stock ticker.
Reusability:
Agent Type:
Deterministic (API Call)
Implementation Notes:
Direct API call to a financial data provider (e.g., IEX Cloud, Alpha Vantage) to get stock quotes.
Last Evaluated
N/A (Deterministic API)
Accuracy
100.0%
Latency
avg 150ms
Cost Per Interaction
$0.001
Identity (Core A2A):
- Name: Stock Price Agent
- Unique ID:
stock-price-agent
Primary Function (A2A):
Fetch the current market price for a specified stock ticker.
Defined Agent Skills (A2A Interface):
Skill Orchestration & Execution
The operational logic for this agent, including the invocation and management of its defined skills, is handled by the backend system's orchestration layer. This layer is responsible for the agent's execution sequence, data handling according to its skill schemas, and any necessary interactions with tools or external services. The specific method (e.g., AI model call, deterministic code execution) is detailed in the 'Implementation Notes' within the Agent Overview.
{ "id": "stock-price-agent", "name": "Stock Price Agent", "description": "Retrieves real-time stock prices for a given ticker symbol.", "isReusable": true, "taskDescription": "Fetch the current market price for a specified stock ticker.", "icon": { "displayName": "Landmark" }, "agentType": "deterministic-api", "implementationNotes": "Direct API call to a financial data provider (e.g., IEX Cloud, Alpha Vantage) to get stock quotes.", "responsibleTeamIds": [ "team-ai-core" ], "skills": [ { "id": "get-stock-quote", "name": "Get Stock Quote", "description": "Fetches the latest stock price and related quote data for a given ticker symbol.", "inputSchemaExample": "{\n \"properties\": {\n \"tickerSymbol\": {\n \"type\": \"string\"\n }\n }\n}", "outputSchemaExample": "{\n \"properties\": {\n \"ticker\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n }\n }\n}" } ], "evaluation": { "lastEvaluated": "N/A (Deterministic API)", "accuracy": 1, "latency": "avg 150ms", "costPerInteraction": "$0.001" }, "inputs": [ "gds-ticker-symbol" ], "outputs": [ "gds-stock-quote-data" ] }