autogen/test/agentchat/contrib/test_web_surfer.py
afourney 0d5163b78a
WebSurfer Updated (Selenium, Playwright, and support for many filetypes) (#1929)
* Feat/headless browser (retargeted) (#1832)

* Add headless browser to the WebSurferAgent, closes #1481

* replace soup.get_text() with markdownify.MarkdownConverter().convert_soup(soup)

* import HeadlessChromeBrowser

* implicitly wait for 10s

* inicrease max. wait time to 99s

* fix: trim trailing whitespace

* test: fix headless tests

* better bing query search

* docs: add example 3 for headless option

---------

Co-authored-by: Vijay Ramesh <vijay@regrello.com>

* Handle missing Selenium package.

* Added browser_chat.py example to simplify testing.

* Based browser on mdconvert. (#1847)

* Based browser on mdconvert.

* Updated web_surfer.

* Renamed HeadlessChromeBrowser to SeleniumChromeBrowser

* Added an initial POC with Playwright.

* Separated Bing search into it's own utility module.

* Simple browser now uses Bing tools.

* Updated Playwright browser to inherit from SimpleTextBrowser

* Got Selenium working too.

* Renamed classes and files for consistency.

* Added more instructions.

* Initial work to support other search providers.

* Added some basic behavior when the BING_API_KEY is missing.

* Cleaned up some search results.

* Moved to using the request.Sessions object. Moved Bing SERP paring to mdconvert to be more broadly useful.

* Added backward compatibility to WebSurferAgent

* Selenium and Playwright now grab the whole DOM, not jus the body, allowing the converters access to metadata.

* Fixed printing of page titles in Playwright.

* Moved installation of WebSurfer dependencies to contrib-tests.yml

* Fixing pre-commit issues.

* Reverting conversable_agent, which should not have been changed in prior commit.

* Added RequestMarkdownBrowser tests.

* Fixed a bug with Bing search, and added search test cases.

* Added tests for Bing search.

* Added tests for md_convert

* Added test files.

* Added missing pptx.

* Added more tests for WebSurfer coverage.

* Fixed guard on requests_markdown_browser test.

* Updated test coverage for mdconvert.

* Fix brwser_utils tests.

* Removed image test from browser, since exiftool isn't installed on test machine.

* Removed image test from browser, since exiftool isn't installed on test machine.

* Disable Selenium GPU and sandbox to ensure it runs headless in Docker.

* Added option for Bing API results to be interleaved (as Bing specifies), or presented in a categorized list (Web, News, Videos), etc

* Print more details when requests exceptions are thrown.

* Added additional documentation to markdown_search

* Added documentation to the selenium_markdown_browser.

* Added documentation to playwright_markdown_browser.py

* Added documentation to requests_markdown_browser

* Added documentation to mdconvert.py

* Updated agentchat_surfer notebook.

* Update .github/workflows/contrib-tests.yml

Co-authored-by: Davor Runje <davor@airt.ai>

* Merge main. Resolve conflicts.

* Resolve pre-commit checks.

* Removed offending LFS file.

* Re-added offending LFS file.

* Fixed browser_utils tests.

* Fixed style errors.

---------

Co-authored-by: Asapanna Rakesh <45640029+INF800@users.noreply.github.com>
Co-authored-by: Vijay Ramesh <vijay@regrello.com>
Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
Co-authored-by: Davor Runje <davor@airt.ai>
2024-09-25 22:17:42 +00:00

178 lines
6.1 KiB
Python

#!/usr/bin/env python3 -m pytest
import os
import re
import sys
import pytest
from autogen import UserProxyAgent, config_list_from_json
from autogen.oai.openai_utils import filter_config
sys.path.append(os.path.join(os.path.dirname(__file__), "../.."))
from conftest import MOCK_OPEN_AI_API_KEY, reason, skip_openai # noqa: E402
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
from test_assistant_agent import KEY_LOC, OAI_CONFIG_LIST # noqa: E402
BLOG_POST_URL = "https://microsoft.github.io/autogen/blog/2023/04/21/LLM-tuning-math"
BLOG_POST_TITLE = "Does Model and Inference Parameter Matter in LLM Applications? - A Case Study for MATH | AutoGen"
BING_QUERY = "Microsoft"
try:
from autogen.agentchat.contrib.web_surfer import WebSurferAgent
except ImportError:
skip_all = True
else:
skip_all = False
try:
BING_API_KEY = os.environ["BING_API_KEY"]
except KeyError:
skip_bing = True
else:
skip_bing = False
if not skip_openai:
config_list = config_list_from_json(env_or_file=OAI_CONFIG_LIST, file_location=KEY_LOC)
@pytest.mark.skipif(
skip_all,
reason="do not run if dependency is not installed",
)
def test_web_surfer() -> None:
with pytest.MonkeyPatch.context() as mp:
# we mock the API key so we can register functions (llm_config must be present for this to work)
mp.setenv("OPENAI_API_KEY", MOCK_OPEN_AI_API_KEY)
page_size = 4096
web_surfer = WebSurferAgent(
"web_surfer",
llm_config={"model": "gpt-4", "config_list": []},
browser_config={"viewport_size": page_size},
)
# Sneak a peak at the function map, allowing us to call the functions for testing here
function_map = web_surfer._user_proxy._function_map
# Test some basic navigations
response = function_map["visit_page"](BLOG_POST_URL)
assert f"Address: {BLOG_POST_URL}".strip() in response
assert f"Title: {BLOG_POST_TITLE}".strip() in response
# Test scrolling
m = re.search(r"\bViewport position: Showing page 1 of (\d+).", response)
total_pages = int(m.group(1)) # type: ignore[union-attr]
response = function_map["page_down"]()
assert (
f"Viewport position: Showing page 2 of {total_pages}." in response
) # Assumes the content is longer than one screen
response = function_map["page_up"]()
assert f"Viewport position: Showing page 1 of {total_pages}." in response
# Try to scroll too far back up
response = function_map["page_up"]()
assert f"Viewport position: Showing page 1 of {total_pages}." in response
# Try to scroll too far down
for i in range(0, total_pages + 1):
response = function_map["page_down"]()
assert f"Viewport position: Showing page {total_pages} of {total_pages}." in response
# Test Q&A and summarization -- we don't have a key so we expect it to fail (but it means the code path is correct)
with pytest.raises(IndexError):
response = function_map["read_page_and_answer"]("When was it founded?")
with pytest.raises(IndexError):
response = function_map["summarize_page"]()
@pytest.mark.skipif(
skip_all or skip_openai,
reason="dependency is not installed OR" + reason,
)
def test_web_surfer_oai() -> None:
llm_config = {"config_list": config_list, "timeout": 180, "cache_seed": 42}
# adding Azure name variations to the model list
model = ["gpt-3.5-turbo-1106", "gpt-3.5-turbo-16k-0613", "gpt-3.5-turbo-16k"]
model += [m.replace(".", "") for m in model]
summarizer_llm_config = {
"config_list": filter_config(config_list, dict(model=model)), # type: ignore[no-untyped-call]
"timeout": 180,
}
assert len(llm_config["config_list"]) > 0 # type: ignore[arg-type]
assert len(summarizer_llm_config["config_list"]) > 0
page_size = 4096
web_surfer = WebSurferAgent(
"web_surfer",
llm_config=llm_config,
summarizer_llm_config=summarizer_llm_config,
browser_config={"viewport_size": page_size},
)
user_proxy = UserProxyAgent(
"user_proxy",
human_input_mode="NEVER",
code_execution_config=False,
default_auto_reply="",
is_termination_msg=lambda x: True,
)
# Make some requests that should test function calling
user_proxy.initiate_chat(web_surfer, message="Please visit the page 'https://en.wikipedia.org/wiki/Microsoft'")
user_proxy.initiate_chat(web_surfer, message="Please scroll down.")
user_proxy.initiate_chat(web_surfer, message="Please scroll up.")
user_proxy.initiate_chat(web_surfer, message="When was it founded?")
user_proxy.initiate_chat(web_surfer, message="What's this page about?")
@pytest.mark.skipif(
skip_bing,
reason="do not run if bing api key is not available",
)
def test_web_surfer_bing() -> None:
page_size = 4096
web_surfer = WebSurferAgent(
"web_surfer",
llm_config={
"config_list": [
{
"model": "gpt-3.5-turbo-16k",
"api_key": MOCK_OPEN_AI_API_KEY,
}
]
},
browser_config={"viewport_size": page_size, "bing_api_key": BING_API_KEY},
)
# Sneak a peak at the function map, allowing us to call the functions for testing here
function_map = web_surfer._user_proxy._function_map
# Test informational queries
response = function_map["informational_web_search"](BING_QUERY)
assert f"Address: search: {BING_QUERY}" in response
assert f"Title: {BING_QUERY} - Search" in response
assert "Viewport position: Showing page 1 of 1." in response
assert f"A Bing search for '{BING_QUERY}' found " in response
# Test informational queries
response = function_map["navigational_web_search"](BING_QUERY + " Wikipedia")
assert "Address: https://en.wikipedia.org/wiki/" in response
if __name__ == "__main__":
"""Runs this file's tests from the command line."""
test_web_surfer()
test_web_surfer_oai()
test_web_surfer_bing()