From b430e2c88fe6db7104faf9dc44cad639f95965c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=A3=92=E6=A3=92?= Date: Mon, 15 Jan 2024 19:02:37 +0800 Subject: [PATCH] update scrape_web module. --- metagpt/tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metagpt/tools/__init__.py b/metagpt/tools/__init__.py index c24dc6fce..2f8941fdb 100644 --- a/metagpt/tools/__init__.py +++ b/metagpt/tools/__init__.py @@ -78,7 +78,7 @@ TOOL_TYPE_MAPPINGS = { ), "scrape_web": ToolType( name="scrape_web", - module="metagpt.tools.scrape_web", + module=str(TOOL_LIBS_PATH / "scrape_web"), desc="Scrape data from web page.", usage_prompt="", ),