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