BaseAgent

class BaseAgent(ABC):

An abstract base class for all CAMEL agents.

reset

def reset(self, *args: Any, **kwargs: Any):

Resets the agent to its initial state.

step

def step(self, *args: Any, **kwargs: Any):

Performs a single step of the agent.