Skip to content
Gladia Help Center home
Gladia Help Center home

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

type

Optional

Style of summary to generate.

generalconcisebullet_points

general

You can choose one of three summary types depending on your preference.

Type

Description

general

A regular summary of the transcription (default).

concise

A shorter summary for a quick overview.

bullet_points

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

success

Boolean

Indicates if summarization was successful.

is_empty

Boolean

True if no summary could be generated.

results

String

The generated summary text.

exec_time

Float

Time taken to generate the summary.

error

String

Error message if something went wrong.