Raiff1982's picture
Upgrade to REAL orchestrated Codette on ZeroGPU (transformers backend for the llama.cpp pipeline)
c8fbdf1 verified
Raw
History Blame Contribute Delete
851 Bytes
"""
Reasoning Forge Agents
Each agent analyzes concepts from a distinct intellectual perspective,
producing substantive domain-specific reasoning.
"""
from reasoning_forge.agents.base_agent import ReasoningAgent
from reasoning_forge.agents.newton_agent import NewtonAgent
from reasoning_forge.agents.quantum_agent import QuantumAgent
from reasoning_forge.agents.ethics_agent import EthicsAgent
from reasoning_forge.agents.philosophy_agent import PhilosophyAgent
from reasoning_forge.agents.davinci_agent import DaVinciAgent
from reasoning_forge.agents.empathy_agent import EmpathyAgent
from reasoning_forge.agents.critic_agent import CriticAgent
__all__ = [
"ReasoningAgent",
"NewtonAgent",
"QuantumAgent",
"EthicsAgent",
"PhilosophyAgent",
"DaVinciAgent",
"EmpathyAgent",
"CriticAgent",
]