from agno.agent import Agentfrom agno.models.cerebras import CerebrasOpenAIfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=CerebrasOpenAI(id="llama-4-scout-17b-16e-instruct"), tools=[DuckDuckGoTools()], markdown=True,)# Print the response in the terminalagent.print_response("Whats happening in France?")