Skip to main content

Introduction to WebSurferAgent

If you need an agent that can browse, extract, or interact with the web, WebSurferAgent is a good choice. The agent actions the request(s) given to it by determining what to do on the web and browsing and crawling it, returning the details of what it finds. The WebSurferAgent has two in-built web tools to choose from:
  1. browser-use - uses an actual browser instance (visible or headless), interacting with the web pages in realtime
  2. Crawl4AI - crawls without a visual browser instance
If you want to add browsing capabilities to your existing agents, see this notebook for browser-use and this notebook for Crawl4AI.
Browser Use requires Python 3.11 or higher.

Installation and Setup

To get started with WebSurferAgent, install AG2 with the browser-use and/or crawl4ai extras.
and/or
If you have been using autogen or ag2, all you need to do is upgrade it using:
or
as autogen and ag2 are aliases for the same PyPI package.
And then setup Playwright:
Now, you can create an agent, nominating the web tool:
Browser Use supports the following models: Supported ModelsWe had great experience with OpenAI, Anthropic, and Gemini. However, DeepSeek and Ollama haven’t performed as well.
Crawl4AI is built on top of LiteLLM and supports the same models as LiteLLM.We had great experience with OpenAI, Anthropic, Gemini and Ollama. However, as of this writing, DeepSeek is encountering some issues.

Using WebSurferAgent

Crawl4AI doesn’t always require an LLM configuration, see this notebook for examples with and without one.
Let’s browse the web for news on AG2.
Let’s break it down:
  1. Import WebSurferAgent and create an LLM configuration for the browser-use tool to use.
  2. We create a configuration dictionary turning off the headless mode (so we can see what’s happening) and saving an animated GIF of the process (shown below).
  3. Create the agent, nominating the web tool and passing in the LLM and tool configurations.
  4. Run the agent, ensuring we pass the agent’s tools through to the run method so it can add them to the internal executor agent to execute.
WebSurferAgent in action