From a3abdb5d1992bfd8080a077af28b4924fdc6d761 Mon Sep 17 00:00:00 2001 From: Ken Jenney Date: Sat, 30 Mar 2024 10:57:08 -0400 Subject: [PATCH] Update ScrapeWebsiteTool.md (#385) --- docs/tools/ScrapeWebsiteTool.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/tools/ScrapeWebsiteTool.md b/docs/tools/ScrapeWebsiteTool.md index 312ba624a3..ae8be244ab 100644 --- a/docs/tools/ScrapeWebsiteTool.md +++ b/docs/tools/ScrapeWebsiteTool.md @@ -21,6 +21,10 @@ tool = ScrapeWebsiteTool() # Initialize the tool with the website URL, so the agent can only scrap the content of the specified website tool = ScrapeWebsiteTool(website_url='https://www.example.com') + +# Extract the text from the site +text = tool.run() +print(text) ``` ## Arguments