Summarization
Distill important information by summarizing your audio files.
The Summarization model generates a summary of the resulting transcript. You can control the style and format of the summary using Summary models and Summary types.
Summarization and Auto Chapters
You can only enable one of the Summarization and Auto Chapters models in the same transcription.
Quickstart
Python
TypeScript
Go
Java
C#
Ruby
Enable Summarization by setting summarization
to true
in the transcription config. Use summary_model
and summary_type
to change the summary format.
If you specify one of summary_model
and summary_type
, then you must specify the other.
The following example returns an informative summary in a bulleted list.
Example output
Custom Summaries Using LeMUR
If you want more control of the output format, see how to generate a Custom summary using LeMUR.
API reference
Request
Response
The response also includes the request parameters used to generate the transcript.
Summary types
The summary type determines both the length and the format of the summary, for example as a bulleted list or a paragraph.
Summary models
The summary model determines the style and tone of the summary.
Frequently asked questions
How long does it take to generate a summarization output?
The inference speed of the Summary model depends on the desired output length. However, a single batch can be processed in less than 1 second.
Can I extract individual words and their corresponding speaker labels with Summarization?
No. Summarization only generates a single abstractive summary of the entire audio file, and doesn’t provide word-level information or speaker labels. If you need word-level information, consider using Word-level timestamps and Speaker Diarization instead.