12-Angry-Agent / agents /__init__.py
Blu3Orange
feat: Introduce smolagents tools for juror agents
af2657b
raw
history blame contribute delete
372 Bytes
"""Agent implementations for 12 Angry Agents.
Uses smolagents CodeAgent with LlamaIndex-powered tools for autonomous reasoning.
"""
from .config_loader import load_juror_configs
from .smolagent_juror import (
SmolagentJuror,
ReasoningStep,
AgentResult,
)
__all__ = [
"SmolagentJuror",
"ReasoningStep",
"AgentResult",
"load_juror_configs",
]