LeMUR
Automatically Generate Action Items From A Meeting With LeMUR
Learn how to use AssemblyAI’s LeMUR
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.
- Import the
assemblyai
package and set your API key
- Use the
Transcriber
object’stranscribe
method and pass in the audio file’s path as a parameter. Thetranscribe
method will save the results of the transcription to theTranscribe
object’stranscript
attribute.
Python
- Define your LeMUR request
context
andanswer_format
parameters for the Action Items feature.
Python
- Run the
action_items
method ontranscript
and print the result to your terminal.
Python