This example shows how to pass a list of messages as input to an agent.
Code
cookbook/agent_concepts/other/input_as_messages_list.py
from agno.agent import Agent, Message
Agent().print_response(
messages=[
Message(
role="user",
content=[
{"type": "text", "text": "Hi! My name is John."},
],
),
Message(
role="user",
content=[
{"type": "text", "text": "What are you capable of?"},
],
),
],
stream=True,
markdown=True,
)
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/agent_concepts/other/input_as_messages_list.py