pub trait AgentRunnable {
// Required method
fn run_agent(self, agent_inner: AgentInnerRunner);
}
Expand description
Functional interface representing the execution of the Agent
Required Methods§
Sourcefn run_agent(self, agent_inner: AgentInnerRunner)
fn run_agent(self, agent_inner: AgentInnerRunner)
Run the Agent. Must end with a call to agent_inner.enter_agent_loop()