In this guide, we’ll show you how to use the to automatically generate summaries of your virtual meetings, so you can quickly review important information and take action based on the insights gathered from the conversations.
upload_url
is no longer valid.
upload_url
returned by the AssemblyAI API to create a JSON payload containing the audio_url
parameter.
To use the Summarization model, set summarization
to True
. By default, the summary_model
model is informative
and the summary_type
is bullets
.
You can find all possible summary models and types here. Note that if the summary_model
is specified, summary_type
is also a required parameter, and vice versa.
POST
request to the AssemblyAI API endpoint with the payload and headers.
completed
, you can retrieve the transcript from the API response, using the summary
key to view the result of the summarization.
summary
key of the API response. In addition to standard transcript metadata, you’ll also find other parameters containing the summary_type
, which indicates the type of summary that was generated, and summary_model
, which indicates the specific AI summarization model that was used to generate the summary. More information on these parameters and their possible values can be found below.
conversational
model, make sure that the two speakers have distinct voices and that there’s minimal background noise. For shorter recordings, the gist
or headline
options may provide the most effective summary, whereas for longer recordings, the bullets_verbose
or paragraph
options may be more appropriate.
Consider the context in which the summary will be used, and whether additional context or explanation is necessary to understand the summary.
Experiment with different summarization options to find the one that works best for your specific use case.
Summary model options | Summary type options |
---|---|
informative (default): Best for files with a single speaker such as presentations or lectures. | bullets (default): A bulleted summary with the most important points. |
conversational : Best for any two-person conversation such as customer/agent or interview/interviewee calls. | bullets_verbose : A longer bullet point list summarizing the entire transcription text. |
catchy : Best for creating video, podcast, or media titles. | gist : A few words summarizing the entire transcription text. |
headline : A single sentence summarizing the entire transcription text. | |
paragraph : A single paragraph summarizing the entire transcription text. |
summarization
parameter in your request and set it to true
. In addition, note that the Auto Chapters model and the Summarization model can’t be active in the same request. If you try to enable both Auto Chapters and Summarization in a single request, you’ll receive the following error message: "Only one of the following models can be enabled at a time: auto_chapters, summarization."