summarize_content
Generate concise summaries of web content directly from URLs, optimizing for LLM context by specifying maximum summary length.
Instructions
Summarizes web content for more concise LLM context
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| maxLength | No | Maximum length of the summary | |
| url | Yes | URL to summarize |
Input Schema (JSON Schema)
{
"properties": {
"maxLength": {
"description": "Maximum length of the summary",
"type": "number"
},
"url": {
"description": "URL to summarize",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}