from agno.agent import Agentfrom agno.tools.trafilatura import TrafilaturaToolsagent = Agent( instructions=[ "You are a web content extraction specialist", "Extract clean text and structured data from web pages", "Provide detailed analysis of web content and metadata", ], tools=[TrafilaturaTools()], markdown=True,)agent.print_response("Extract the main content from https://example.com/article")