kagi_summarizer
Generate concise summaries or bullet-point takeaways from any document, video, or audio by providing a URL. Supports multiple languages and integrates with Kagi's API for efficient content extraction.
Instructions
Summarize content from a URL using the Kagi 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)
{
"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.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}