from agno.agent import Agentfrom agno.tools.browserbase import BrowserbaseTools# Create extraction agent agent = Agent( name="Data Extractor", tools=[BrowserbaseTools()], instructions=[ "Extract content clearly and format nicely", "Always close sessions when done" ], markdown=True,)# Extract quotesresponse = agent.run(""" Go to https://quotes.toscrape.com and: 1. Get the first 3 quotes with authors 2. Navigate to page 2 3. Get 2 more quotes from page 2""")print(response.content)