Audio Intelligence
Auto Chapters
The Auto Chapters model summarizes audio data over time into chapters. Chapters makes it easy for users to navigate and find specific information.
Each chapter contains the following:
- Summary
- One-line gist
- Headline
- Start and end timestamps
Auto Chapters and Summarization
You can only enable one of the Auto Chapters and Summarization models in the same transcription.
Quickstart
Enable Auto Chapters by setting auto_chapters
to true
in the transcription config. punctuate
must be enabled to use Auto Chapters (punctuate
is enabled by default).
Example output
API reference
Request
Key | Type | Description |
---|---|---|
auto_chapters | boolean | Enable Auto Chapters. |
Response
Key | Type | Description |
---|---|---|
chapters | array | An array of temporally sequential chapters for the audio file. |
chapters[i].gist | string | An short summary in a few words of the content spoken in the i-th chapter. |
chapters[i].headline | string | A single sentence summary of the content spoken during the i-th chapter. |
chapters[i].summary | string | A one paragraph summary of the content spoken during the i-th chapter. |
chapters[i].start | number | The starting time, in milliseconds, for the i-th chapter. |
chapters[i].end | number | The ending time, in milliseconds, for the i-th chapter. |
The response also includes the request parameters used to generate the transcript.