generate_learning_path
Create structured learning paths from YouTube videos tailored to your skill level, with difficulty assessment and optional quiz generation for effective topic mastery.
Instructions
Generate AI-powered learning paths from YouTube content with difficulty assessment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeQuizzes | No | Whether to generate quiz questions | |
maxVideos | No | Maximum number of videos to include | |
query | Yes | Topic or subject for the learning path | |
targetLevel | No | Target skill level for the learning path | beginner |
Input Schema (JSON Schema)
{
"properties": {
"includeQuizzes": {
"default": false,
"description": "Whether to generate quiz questions",
"type": "boolean"
},
"maxVideos": {
"default": 20,
"description": "Maximum number of videos to include",
"maximum": 50,
"minimum": 5,
"type": "number"
},
"query": {
"description": "Topic or subject for the learning path",
"type": "string"
},
"targetLevel": {
"default": "beginner",
"description": "Target skill level for the learning path",
"enum": [
"beginner",
"intermediate",
"advanced"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}