from agno.agent import Agentfrom agno.models.openai import OpenAIChat# You can set the debug mode on the agent for all runs to have more verbose outputagent = Agent( model=OpenAIChat(id="gpt-5-mini"), debug_mode=True,)agent.print_response(input="Tell me a joke.")# You can also set the debug mode on a single runagent = Agent( model=OpenAIChat(id="gpt-5-mini"),)agent.print_response(input="Tell me a joke.", debug_mode=True)