feat(024-generic-agent-interface-contrib): define AgentInput schema with ticker, date, context

This commit is contained in:
Clayton Brown 2026-04-20 23:35:41 +10:00
parent 7081ab7b20
commit cff4d4dd6d
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ No standardized input/output contract for agents. Hard to swap, compose, or benc
## Tasks
- [x] 1. Define AgentInput schema: ticker, date, context (market data, news, fundamentals)
- [x] 2. Define AgentOutput schema: rating (5-tier), confidence, price_targets, thesis, risk_factors
- [ ] 2. Define AgentOutput schema: rating (5-tier), confidence, price_targets, thesis, risk_factors
- [ ] 3. Create BaseAgent abstract class with analyze(input) -> output contract
- [ ] 4. Refactor existing agents (fundamentals, sentiment, news, technical) to implement BaseAgent
- [ ] 5. Create AgentRegistry for pluggable agent discovery