get_summary
Summarize YouTube videos by extracting key points from transcripts. Customize output length and language for quick insights. Ideal for saving time and understanding content efficiently.
Instructions
Generate a summary of a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | en | |
length | No | medium | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "en",
"title": "Language",
"type": "string"
},
"length": {
"default": "medium",
"title": "Length",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_summaryArguments",
"type": "object"
}