Skip to content

Video To Text

graph TD;
    classDef success fill:#5CB85C,stroke:#fff,color:#fff;
    classDef progress fill:#428BCA,stroke:#fff,color:#fff;
    classDef pending fill:#F0AD4E,stroke:#fff,color:#fff;

    VideoScript[Video Scripts] --> OutlineGeneration[Generate Outline];

    subgraph IntegrationAndPreparation_Claude
        VideoScript --> PromptConstruction[Construct Prompt];
        OutlineGeneration --> PromptConstruction;
        CodeSnippet[Code Snippets] --> PromptConstruction;
        PromptConstruction --> FewShotExamples[Incorporate Few-Shot Examples];
    end

    subgraph FirstSection
        FewShotExamples --> GenSection1[Section 1: Generated Content];
    end

    subgraph SubsequentSections
        GenSection1 --> |Next Section Input| GenSection2[Section X: Generated Content];
    end

    subgraph IterativeReview_GPT4
        Reviewer -->|Provides Feedback| Writer;
        Writer -->|Implements Modifications| Reviewer;
    end

    SubsequentSections --> IterativeReview_GPT4;
    IterativeReview_GPT4 --> SubsequentSections;
    FirstSection --> IterativeReview_GPT4;
    IterativeReview_GPT4 --> FirstSection;
    GenSection2 --> FinalOutput[Combine All Sections];

    class GenSection1,GenSection2 progress;
    class GenSection2 pending;
    class FinalOutput success;
    style IterativeReview_GPT4 color:#f66

Further info

Please contact work@2333.fun.


Last update: 2024-08-21