How to summarize my transcription ?
How to summarize my transcription?
Gladia offers a Summarization feature to quickly extract the most important information from your audio files.
This feature is currently in Beta. We welcome your feedback on Discord to improve it!
Configuration
To enable summarization, set "summarization": true.
You can also customize the style with summarization_config.
{ "audio_url": "<your audio url>", "summarization": true, "summarization_config": { "type": "concise" // 'general', 'concise', or 'bullet_points' } }
Configuration Options
Field  | Required  | Description  | Allowed Values  | Default  | 
|---|---|---|---|---|
  | Optional  | Style of summary to generate.  | 
  | 
  | 
You can choose one of three summary types depending on your preference.
Type  | Description  | 
|---|---|
  | A regular summary of the transcription (default).  | 
  | A shorter summary for a quick overview.  | 
  | Extracts the key points in a clear, itemized list.  | 
Result Format
The transcription result will include a "summarization" key:
{ "transcription": {...}, "summarization": { "success": true, "is_empty": false, "results": "This transcription suggests that...", "exec_time": 1.5126, "error": null } }
Field  | Type  | Description  | 
|---|---|---|
  | Boolean  | Indicates if summarization was successful.  | 
  | Boolean  | True if no summary could be generated.  | 
  | String  | The generated summary text.  | 
  | Float  | Time taken to generate the summary.  | 
  | String  | Error message if something went wrong.  |