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. 1

    Create a new file and import the necessary libraries. Configure an authenticated HTTP request using your API key.

  2. 2

    Upload your local file to the AssemblyAI API.

  3. 3

    Submit a transcription with the audio_url parameter set to the value of upload_url.

  4. 4

    After making the request, you’ll receive an ID for the transcription. Use it to poll the API every few seconds to check the status of the transcript job. Once the status is completed, you can retrieve the transcript from the API response.

  5. 5

    Define a prompt to tell LeMUR to extract action items from this meeting.

  6. 6

    Create a JSON payload containing the transcript ID and your prompt as part of a POST request to the LeMUR Task endpoint.

Understanding the response

The result of your LeMUR output should be something like this:

Action Item Title: Review competitor product featuresAssignee: ConnorDue Date: 2019-07-16Status: In progressNotes: Compare our product features against our main competitors. Look for gaps and areas we can improve.Action Item Title: Plan social media campaignAssignee: RohanDue Date: 2019-07-123Status: Not startedNotes: Draft a proposal for an Instagram/Facebook campaign to promote our new product launch.Action Item Title: Contact suppliers about part shortagesAssignee: JasonDue Date: 2019-07-12Status: CompletedNotes: Reached out to 3 suppliers about expected delivery dates for backordered parts. Parts should arrive by end of month.Action Item Title: Set up product demo for key customersAssignee: MattDue Date: 2019-08-15Status: In progressNotes: Identify 5-10 key customers to invite to product demo day. Send invites by end of month.