L2_Agent / lagent /agents /__init__.py
Pluto0616's picture
L2_agent
499a238
raw
history blame contribute delete
419 Bytes
from .agent import Agent, AgentDict, AgentList, AsyncAgent, AsyncSequential, Sequential
from .react import AsyncReAct, ReAct
from .stream import AgentForInternLM, AsyncAgentForInternLM, AsyncMathCoder, MathCoder
__all__ = [
'Agent', 'AgentDict', 'AgentList', 'AsyncAgent', 'AgentForInternLM',
'AsyncAgentForInternLM', 'MathCoder', 'AsyncMathCoder', 'ReAct',
'AsyncReAct', 'Sequential', 'AsyncSequential'
]