from agno.agent import Agentfrom agno.models.openai import OpenAIResponsesfrom agno.tools.file import FileToolsagent = Agent( model=OpenAIResponses(id="gpt-5-mini"), tools=[{"type": "web_search_preview"}, FileTools()], instructions="Save the results to a file with a relevant name.", markdown=True,)agent.print_response("Whats happening in France?")