Language Models are machine-learning programs that are trained to understand natural language and code.
from agno.agent import Agent from agno.models.openai import OpenAIChat agent = Agent( model=OpenAIChat(id="gpt-4o"), description="Share 15 minute healthy recipes.", markdown=True, ) agent.print_response("Share a breakfast recipe.", stream=True)
exponential_backoff
True
Agent
agent = Agent( model=OpenAIChat(id="gpt-4o"), exponential_backoff=True, retries=2, retry_delay=1, )
Was this page helpful?