generate_knowledge_graph
Create cross-video knowledge graphs showing concept relationships by analyzing multiple YouTube videos to map connections between topics and ideas.
Instructions
Create cross-video knowledge graphs showing concept relationships
Input Schema
Name | Required | Description | Default |
---|---|---|---|
focusTopics | No | Specific topics to focus on (optional) | |
graphDepth | No | Depth of concept extraction and analysis | medium |
includeTranscripts | No | Include transcript content in analysis | |
videoIds | Yes | YouTube video IDs to create knowledge graph from |
Input Schema (JSON Schema)
{
"properties": {
"focusTopics": {
"description": "Specific topics to focus on (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"graphDepth": {
"default": "medium",
"description": "Depth of concept extraction and analysis",
"enum": [
"shallow",
"medium",
"deep"
],
"type": "string"
},
"includeTranscripts": {
"default": true,
"description": "Include transcript content in analysis",
"type": "boolean"
},
"videoIds": {
"description": "YouTube video IDs to create knowledge graph from",
"items": {
"type": "string"
},
"maxItems": 10,
"minItems": 2,
"type": "array"
}
},
"required": [
"videoIds"
],
"type": "object"
}