web_fetch
Retrieve web page data by specifying a URL, with options to set timeout, size limits, and custom headers. Integrates with TOOL4LM server for enhanced local LLM capabilities.
Instructions
Alias of web.fetch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | ||
max_bytes | No | ||
timeout | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"max_bytes": {
"type": "integer"
},
"timeout": {
"type": "integer"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}