mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
Added Browserbase loader to the docs (#508)
* Create BrowserbaseLoadTool.md * added browserbase loader
This commit is contained in:
29
docs/tools/BrowserbaseLoadTool.md
Normal file
29
docs/tools/BrowserbaseLoadTool.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# BrowserbaseLoadTool
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
[Browserbase](https://browserbase.com) is a serverless platform for running headless browsers, it offers advanced debugging, session recordings, stealth mode, integrated proxies and captcha solving.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
- Get an API key from [browserbase.com](https://browserbase.com) and set it in environment variables (`BROWSERBASE_API_KEY`).
|
||||||
|
- Install the [Browserbase SDK](http://github.com/browserbase/python-sdk) along with `crewai[tools]` package:
|
||||||
|
|
||||||
|
```
|
||||||
|
pip install browserbase 'crewai[tools]'
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
Utilize the BrowserbaseLoadTool as follows to allow your agent to load websites:
|
||||||
|
|
||||||
|
```python
|
||||||
|
from crewai_tools import BrowserbaseLoadTool
|
||||||
|
|
||||||
|
tool = BrowserbaseLoadTool()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Arguments
|
||||||
|
|
||||||
|
- `api_key`: Optional. Specifies Browserbase API key. Defaults is the `BROWSERBASE_API_KEY` environment variable.
|
||||||
|
- `text_content`: Optional. Load pages as readable text. Default is `False`.
|
||||||
@@ -139,6 +139,7 @@ nav:
|
|||||||
- Agent Monitoring with AgentOps: 'how-to/AgentOps-Observability.md'
|
- Agent Monitoring with AgentOps: 'how-to/AgentOps-Observability.md'
|
||||||
- Tools Docs:
|
- Tools Docs:
|
||||||
- Google Serper Search: 'tools/SerperDevTool.md'
|
- Google Serper Search: 'tools/SerperDevTool.md'
|
||||||
|
- Browserbase Web Loader: 'tools/BrowserbaseLoadTool.md'
|
||||||
- Scrape Website: 'tools/ScrapeWebsiteTool.md'
|
- Scrape Website: 'tools/ScrapeWebsiteTool.md'
|
||||||
- Directory Read: 'tools/DirectoryReadTool.md'
|
- Directory Read: 'tools/DirectoryReadTool.md'
|
||||||
- File Read: 'tools/FileReadTool.md'
|
- File Read: 'tools/FileReadTool.md'
|
||||||
|
|||||||
Reference in New Issue
Block a user