summarize_url
Summarize web page content from any URL into concise bullet points or paragraphs using AI. Customize output length, format, and instructions for tailored summaries.
Instructions
Summarize a web page URL using AI via ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
debug | No | Enable debug mode for detailed logging | |
delayAfterLoad | No | Optional delay after page load in milliseconds | |
format | No | Format of the summary (bullet points or paragraph) | |
instructions | No | Custom instructions for the AI on how to summarize the content | |
maxLength | No | Maximum length of the summary in words | |
model | No | AI model to use for summarization | |
systemPrompt | No | Custom system prompt to guide the AI | |
url | Yes | The URL to summarize |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"debug": {
"description": "Enable debug mode for detailed logging",
"type": "boolean"
},
"delayAfterLoad": {
"description": "Optional delay after page load in milliseconds",
"type": "number"
},
"format": {
"description": "Format of the summary (bullet points or paragraph)",
"enum": [
"bullet",
"paragraph"
],
"type": "string"
},
"instructions": {
"description": "Custom instructions for the AI on how to summarize the content",
"type": "string"
},
"maxLength": {
"description": "Maximum length of the summary in words",
"type": "number"
},
"model": {
"description": "AI model to use for summarization",
"type": "string"
},
"systemPrompt": {
"description": "Custom system prompt to guide the AI",
"type": "string"
},
"url": {
"description": "The URL to summarize",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}