from agno.agent import Agentfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent(tools=[DuckDuckGoTools()], show_tool_calls=True)agent.print_response("Whats happening in France?", markdown=True)# We will search DDG but limit the site to Politifactagent = Agent( tools=[DuckDuckGoTools(modifier="site:politifact.com")], show_tool_calls=True)agent.print_response( "Is Taylor Swift promoting energy-saving devices with Elon Musk?", markdown=False)