feat(024-generic-agent-interface-contrib): add AgentRegistry for pluggable agent discovery

This commit is contained in:
Clayton Brown 2026-04-20 23:41:13 +10:00
parent 20686a2544
commit 4700127480
3 changed files with 66 additions and 1 deletions

View File

@ -13,6 +13,6 @@ No standardized input/output contract for agents. Hard to swap, compose, or benc
- [x] 2. Define AgentOutput schema: rating (5-tier), confidence, price_targets, thesis, risk_factors
- [x] 3. Create BaseAgent abstract class with analyze(input) -> output contract
- [x] 4. Refactor existing agents (fundamentals, sentiment, news, technical) to implement BaseAgent
- [ ] 5. Create AgentRegistry for pluggable agent discovery
- [x] 5. Create AgentRegistry for pluggable agent discovery
- [ ] 6. Add agent benchmarking: compare outputs across different LLM backends
- [ ] 7. Document interface for third-party agent contributions

View File

@ -1,4 +1,5 @@
from .base_agent import BaseAgent
from .registry import AgentRegistry
from .utils.agent_utils import create_msg_delete
from .utils.agent_states import AgentState, InvestDebateState, RiskDebateState
from .utils.memory import FinancialSituationMemory
@ -28,6 +29,7 @@ from .managers.portfolio_manager import create_portfolio_manager
from .trader.trader import create_trader
__all__ = [
"AgentRegistry",
"BaseAgent",
"FundamentalsAgent",
"SentimentAgent",

View File

@ -0,0 +1,63 @@
"""AgentRegistry for pluggable agent discovery."""
from __future__ import annotations
from typing import Callable
from .base_agent import BaseAgent
class AgentRegistry:
"""Registry that maps agent names to their factory callables.
Usage::
registry = AgentRegistry()
registry.register("fundamentals", FundamentalsAgent, llm=my_llm)
agent = registry.get("fundamentals")
output = agent.analyze(agent_input)
Agents can be registered either as a pre-built instance or as a class
(with optional ``**kwargs`` forwarded to the constructor on first access).
"""
def __init__(self) -> None:
self._factories: dict[str, Callable[[], BaseAgent]] = {}
self._instances: dict[str, BaseAgent] = {}
def register(
self,
name: str,
agent: type[BaseAgent] | BaseAgent,
**kwargs,
) -> None:
"""Register an agent class or instance under *name*.
If *agent* is a class, ``kwargs`` are forwarded to its constructor
when :meth:`get` is called. If it is already an instance, it is
stored directly.
"""
if isinstance(agent, BaseAgent):
self._instances[name] = agent
elif isinstance(agent, type) and issubclass(agent, BaseAgent):
self._factories[name] = lambda: agent(**kwargs)
else:
raise TypeError(f"Expected BaseAgent subclass or instance, got {type(agent)}")
def get(self, name: str) -> BaseAgent:
"""Return the agent registered under *name*, instantiating lazily if needed."""
if name not in self._instances:
if name not in self._factories:
raise KeyError(f"No agent registered under '{name}'")
self._instances[name] = self._factories.pop(name)()
return self._instances[name]
def list(self) -> list[str]:
"""Return sorted list of all registered agent names."""
return sorted({*self._factories, *self._instances})
def __contains__(self, name: str) -> bool:
return name in self._factories or name in self._instances
def __len__(self) -> int:
return len(self.list())