Code
cookbook/agent_concepts/other/input_as_messages_list.py
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
You are viewing v1 docs. For the latest documentation, visit docs.agno.com
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,
)
Was this page helpful?