Skip to main content
In this guide, you’ll learn how to use AssemblyAI LeMUR to process an audio file and then automatically generate action items from the meeting’s transcript.

Overview

Before we begin, make sure you have an AssemblyAI account and an API key. You can sign up for an AssemblyAI account and get your API key from your dashboard. LeMUR features are currently only available to paid users at two pricing tiers, LeMUR Default and LeMUR Basic. Refer to our pricing page for more detail.

Step-by-step instructions

In this guide, you’ll use AssemblyAI to transcribe a meeting recording. Then, you’ll request a list of action items from LeMUR.
  1. Import the assemblyai package and set your API key
  1. Use the Transcriber object’s transcribe method and pass in the audio file’s path as a parameter. The transcribe method will save the results of the transcription to the Transcribe object’s transcript attribute.
Python
  1. Define your LeMUR request context and answer_format parameters for the Action Items feature.
Python
  1. Run the action_items method on transcript and print the result to your terminal.
Python