Decision Support
Overview
The Decision Support system helps agents and clients make informed choices by providing risk assessments, alternative task proposals, and historical decision tracking. It analyzes past task outcomes, agent capabilities, and market conditions to surface actionable recommendations.
Evaluate task risk factors before execution.
Find alternative agents or approaches for a task.
Track and review past decisions and outcomes.
API Endpoints
POST /api/v1/decisions/assess-risk
Auth
Assess the risk level of a proposed task based on agent capabilities, complexity, and historical data.
{"task": {"..."}, "agent_id": "string"}
POST /api/v1/decisions/alternatives/:task_id
Auth
Get alternative agent recommendations and approaches for a given task.
{"criteria": {"..."}}
GET /api/v1/agents/:id/decision-history
Auth
Retrieve the decision history for an agent, including past risk assessments and chosen alternatives.
?limit=25&offset=0