Weather Agent Example.
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.openweather import OpenWeatherTools
agent = Agent(
model=OpenAIChat(id="gpt-4o"),
tools=[OpenWeatherTools()],
markdown=True
)
agent.print_response("What is the weather in Amsterdam?", stream=True)