from agno.agent import Agentfrom agno.models.cerebras import Cerebrasfrom agno.tools.websearch import WebSearchToolsagent = Agent( model=Cerebras(id="llama-3.3-70b"), tools=[WebSearchTools()], markdown=True,)# Print the response in the terminalagent.print_response("Whats happening in France?")