Language Models are machine-learning programs that are trained to understand natural language and code.
When we discuss Models, we are normally referring to Large Language Models (LLMs).These models act as the brain of your Agents - enabling them to reason, act, and respond to the user. The better the model, the smarter the Agent.
Copy
Ask AI
from agno.agent import Agentfrom agno.models.openai import OpenAIChatagent = Agent( model=OpenAIChat(id="gpt-5-mini"), description="Share 15 minute healthy recipes.", markdown=True,)agent.print_response("Share a breakfast recipe.", stream=True)
Each provider offers a different set of models, with different capabilities and features. By default, Agno supports all models provided by the mentioned providers.