ForcePilot/src/agents/react/graph.py
2025-07-22 17:29:38 +08:00

9 lines
271 B
Python

from src.agents.registry import BaseAgent
class ReActAgent(BaseAgent):
name = "ReAct"
description = "A react agent that can answer questions and help with tasks."
async def get_graph(self, **kwargs):
from .workflows import graph
return graph