kagi_summarizer
Summarize text, video, or audio content from a URL into concise paragraph prose or key bullet points using Kagi.com's Summarizer API. Supports multiple languages for enhanced accessibility and clarity.
Instructions
Summarize content from a URL using the Kagi.com Summarizer API. The Summarizer can summarize any document type (text webpage, video, audio, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
summary_type | No | Type of summary to produce. Options are 'summary' for paragraph prose and 'takeaway' for a bulleted list of key points. | summary |
target_language | No | Desired output language using language codes (e.g., 'EN' for English). If not specified, the document's original language influences the output. | |
url | Yes | A URL to a document to summarize. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"summary_type": {
"default": "summary",
"description": "Type of summary to produce. Options are 'summary' for paragraph prose and 'takeaway' for a bulleted list of key points.",
"enum": [
"summary",
"takeaway"
],
"type": "string"
},
"target_language": {
"description": "Desired output language using language codes (e.g., 'EN' for English). If not specified, the document's original language influences the output.",
"type": "string"
},
"url": {
"description": "A URL to a document to summarize.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}