Update ScrapeWebsiteTool.md (#385)

This commit is contained in:
Ken Jenney
2024-03-30 10:57:08 -04:00
committed by GitHub
parent e3ebeb9dde
commit a3abdb5d19

View File

@@ -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