From 4f3144f718b361ce8de93f1b57e3097433e83258 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 312ba624a..ae8be244a 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