Run enterprise grade agent systems in your cloud with the AgentOS. Join the waitlist.
Use Firecrawl with Agno to scrape and crawl the web.
from agno.agent import Agent from agno.tools.firecrawl import FirecrawlTools agent = Agent( tools=[FirecrawlTools(scrape=False, crawl=True)], show_tool_calls=True, markdown=True, ) agent.print_response("Summarize this https://finance.yahoo.com/")
Create a virtual environment
Terminal
python3 -m venv .venv source .venv/bin/activate
Set your API key
export FIRECRAWL_API_KEY=xxx export OPENAI_API_KEY=xxx
Install libraries
pip install -U firecrawl openai agno
Run Agent
python cookbook/tools/firecrawl_tools.py
Was this page helpful?