Auto Chapters

Task Description

The Auto Chapters endpoint analyzes transcript content and automatically generates organized chapter breakdowns with summaries. This task helps users navigate through transcripts by creating structured sections that make it easy to find specific information within the content.

Inputs

  • Transcript content: The text transcript to be analyzed and organized into chapters.

Output

Description

Returns a JSON object containing an array of chapter objects. Each chapter includes:

  • title: A descriptive title for the chapter section
  • summary: A brief summary of the chapter content

Example

1{
2 "chapters": [
3 {
4 "title": "Introduction to the Topic",
5 "summary": "Brief overview of the main discussion points"
6 },
7 {
8 "title": "Key Concept Explanation",
9 "summary": "Detailed explanation of the central concept with examples"
10 },
11 {
12 "title": "Practical Applications",
13 "summary": "Discussion of how the concept can be applied in real-world scenarios"
14 }
15 ]
16}