Learn how to control the flow of an agent’s execution in Agno.
Agent
. Team
and Workflow
will be supported in the near future!continue_run
method.
For example:
continue_run
method continues with the state of the agent at the time of the pause. You can also pass the RunOutput
of a specific run to the continue_run
method, or pass the run_id
and list of updated tools in the updated_tools
parameter.
send_email
tool from the user.
RunOutput
object has a list of tools. In the case of requires_user_input
, the tools that require input will have user_input_schema
populated.
This is a list of UserInputField
objects.