Documentation Index
Fetch the complete documentation index at: https://spacesail.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Code
cookbook/tools/user_control_flow_tools.py
from agno.agent import Agent
from agno.tools.user_control_flow import UserControlFlowTools
agent = Agent(
instructions=[
"You are an interactive assistant that can ask users for input when needed",
"Use user input requests to gather specific information or clarify requirements",
"Always explain why you need the user input and how it will be used",
],
tools=[UserControlFlowTools()],
markdown=True,
)
agent.print_response("Help me create a personalized workout plan")
Usage
Create a virtual environment
Open the Terminal and create a python virtual environment.python3 -m venv .venv
source .venv/bin/activate
Set your API key
export OPENAI_API_KEY=xxx
Install libraries
pip install -U openai agno
Run Agent
python cookbook/tools/user_control_flow_tools.py