web_navigation
TBD
Web Request
Parameters for the web request. Uses Bright Data API to fetch web content.
Required attributes
- Name
- █
- Name
url
- Type
- string
- Description
Url to perform the request and return the html content.
5 ≤ length ≤ 1000
Optional attributes
- Name
- █
- Name
timeout
- Type
- integer
- Description
How long to wait for results before timing out. Default is 60 seconds, but can be increased if we are willing to wait longer in exchange for a better success ratio.
65
- Name
- █
- Name
convert_to_markdown
- Type
- boolean
- Description
Whether to convert the HTML content to markdown. Set to False for raw HTML content or JSON responses.
True
- Name
- █
- Name
zone
- Type
- string
- Description
The zone to use for the Bright Data request.
coherent
Function Call
#### WEB_REQUEST
```json
{
"url": "https://example.com/"
}
```
Response
#### Success
Conversation Variable
https://example.com/
Last Web Response
Stores the last web response as markdown or raw content.
Conversation Variable
# Welcome to example.com
... markdown page ...
Web Request
Parameters for the web request. BROWSER and BASIC are designed to process html content, while RAW is designed to process json and other non-html content.
Required attributes
- Name
- █
- Name
url
- Type
- string
- Description
Url to perform the request and return the html as markdown.
5 ≤ length ≤ 1000
Optional attributes
- Name
- █
- Name
request_type
- Type
- string
- Description
Type of request to perform. Leave empty for BROWSER default. Other options include BASIC for a basic request, CONTENT for fetching just the content, and RAW for api calls and other non-html content.
length ≤ 15
BROWSER
- Name
- █
- Name
timeout
- Type
- integer
- Description
How long to wait for results before timing out. Default is 60 seconds, but can be increased if we are willing to wait longer in exchange for a better success ratio.
65
Function Call
#### BROWSERLESS_WEB_REQUEST
```json
{
"url": "https://example.com/"
}
```
Response
#### Success
Conversation Variable
https://example.com/
Conversation Variable
# Welcome to example.com
... markdown page ...