from agno.agent import Agent, RunResponse # noqafrom agno.models.ollama import Ollamafrom agno.tools.duckduckgo import DuckDuckGoToolsfrom ollama import Client as OllamaClientagent = Agent( model=Ollama(id="llama3.2", client=OllamaClient()), tools=[DuckDuckGoTools(search=True)], markdown=True,)# Print the response in the terminalagent.print_response("What are the latest news about AI developments?")