from agno.agent import Agentfrom agno.models.google import Geminifrom agno.tools.duckduckgo import DuckDuckGoToolsfrom agno.tools.webbrowser import WebBrowserToolsagent = Agent( model=Gemini("gemini-2.0-flash"), tools=[WebBrowserTools(), DuckDuckGoTools()], instructions=[ "Find related websites and pages using DuckDuckGo" "Use web browser to open the site" ], show_tool_calls=True, markdown=True,)agent.print_response("Find an article explaining MCP and open it in the web browser.")