ForcePilot/src/agents/react/graph.py

10 lines
272 B
Python
Raw Normal View History

from src.agents.registry import BaseAgent
2025-03-29 19:13:56 +08:00
class ReActAgent(BaseAgent):
2025-06-29 15:43:40 +08:00
name = "ReAct"
2025-03-29 19:13:56 +08:00
description = "A react agent that can answer questions and help with tasks."
async def get_graph(self, **kwargs):
from .workflows import graph
return graph