Skip to content

text.generate_description

Operation: text.generate_description
Category: ai
Tags: ai, youtube, description, seo, text

Generate an SEO-optimized YouTube description with chapters and hashtags

Type: AI Provider (routed via provider registry)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
transcriptStringYesFull transcript text
titleStringNoVideo title (for SEO alignment)
chaptersJSONNoArray of {timestamp, title} chapter markers
NameTypeDescription
descriptionStringFull YouTube description text
hashtagsJSONArray of recommended hashtags
chapter_markersStringFormatted chapter timestamps for description
{
"include_chapters": true,
"max_length": 5000,
"modality": "text",
"provider": "gemini"
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("text-generate-description", "ai_invoke", (n) =>
n.config({
operation: "text.generate_description",
// ... node-specific config
})
)
.build();