LeMUR

Summarize your audio data

1using AssemblyAI;
2using AssemblyAI.Lemur;
3using AssemblyAI.Transcripts;
4
5var client = new AssemblyAIClient("<YOUR_API_KEY>");
6
7// You can use a local file:
8/*
9var transcript = await client.Transcripts.TranscribeAsync(
10 new FileInfo("./example.mp3")
11);
12*/
13
14// Or use a publicly-accessible URL:
15const string audioUrl = "https://assembly.ai/sports_injuries.mp3";
16var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
17{
18 AudioUrl = audioUrl
19});
20
21var lemurTaskParams = new LemurTaskParams
22{
23 Prompt = "Provide a brief summary of the transcript.",
24 TranscriptIds = [transcript.Id],
25 FinalModel = LemurModel.AnthropicClaude3_5_Sonnet
26};
27
28var response = await client.Lemur.TaskAsync(lemurTaskParams);
29
30Console.WriteLine(response.Response);

If you run the code above, you’ll see the following output:

1The transcript describes several common sports injuries - runner's knee,
2sprained ankle, meniscus tear, rotator cuff tear, and ACL tear. It provides
3definitions, causes, and symptoms for each injury. The transcript seems to be
4narrating sports footage and describing injuries as they occur to the athletes.
5Overall, it provides an overview of these common sports injuries that can result
6from overuse or sudden trauma during athletic activities

Ask questions about your audio data

Q&A with the task endpoint

To ask question about your audio data, define a prompt with your questions and call client.Lemur.TaskAsync(). Use the TranscriptIds parameter to send one or more transcripts as additional context for the model.

1using AssemblyAI;
2using AssemblyAI.Lemur;
3using AssemblyAI.Transcripts;
4
5var client = new AssemblyAIClient("<YOUR_API_KEY>");
6
7// Step 1: Transcribe an audio file. For local files see our Getting Started guides.
8var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
9{
10 AudioUrl = "https://assembly.ai/sports_injuries.mp3"
11});
12
13// Step 2: Define a prompt with your question(s).
14const string prompt = "What is a runner's knee?";
15
16// Step 3: Apply LeMUR.
17var lemurTaskParams = new LemurTaskParams
18{
19 Prompt = prompt,
20 TranscriptIds = [transcript.Id],
21 FinalModel = LemurModel.AnthropicClaude3_5_Sonnet
22};
23
24var response = await client.Lemur.TaskAsync(lemurTaskParams);
25
26Console.WriteLine(response.Response);

#Example output

1Based on the transcript, runner's knee is a condition characterized
2by pain behind or around the kneecap. It is caused by overuse,
3muscle imbalance and inadequate stretching. Symptoms include pain
4under or around the kneecap and pain when walking.

Q&A with the question-answer endpoint

The LeMUR Question & Answer function requires no prompt engineering and facilitates more deterministic and structured outputs. See the code examples below for more information on how to use this endpoint.

To use it, define a list of LemurQuestion objects. For each question, you can define additional Context and specify either a AnswerFormat or a list of AnswerOptions. Additionally, you can define an overall Context.

1using AssemblyAI;
2using AssemblyAI.Lemur;
3using AssemblyAI.Transcripts;
4
5var client = new AssemblyAIClient("<YOUR_API_KEY>");
6
7var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
8{
9 AudioUrl = "https://assembly.ai/meeting.mp4"
10});
11
12var lemurTaskParams = new LemurQuestionAnswerParams
13{
14 TranscriptIds = [transcript.Id],
15 FinalModel = LemurModel.AnthropicClaude3_5_Sonnet,
16 Context = "A GitLab meeting to discuss logistic",
17 Questions =
18 [
19 new LemurQuestion
20 {
21 Question = "What are the top level KPIs for engineering?",
22 Context = "KPI stands for key performance indicator",
23 AnswerFormat = "short sentence"
24 },
25 new LemurQuestion
26 {
27 Question = "How many days has it been since the data team has gotten updated metrics?",
28 Context = "KPI stands for key performance indicator",
29 AnswerOptions = ["1", "2", "3", "4", "5", "6", "7", "more than 7"]
30 }
31 ]
32};
33
34var response = await client.Lemur.QuestionAnswerAsync(lemurTaskParams);
35
36foreach (var qa in response.Response)
37{
38 Console.WriteLine($"Question: {qa.Question}");
39 Console.WriteLine($"Answer: {qa.Answer}");
40}

For the full API reference, as well as the supported models and FAQs, refer to the full LeMUR Q&A guide.

Change the model type

LeMUR features the following LLMs:

  • Claude 3.5 Sonnet
  • Claude 3 Opus
  • Claude 3 Haiku
  • Claude 3 Sonnet

You can switch the model by specifying the final_model parameter.

1var lemurTaskParams = new LemurTaskParams
2{
3 Prompt = prompt,
4 TranscriptIds = [transcript.Id],
5 FinalModel = LemurModel.AnthropicClaude3_5_Sonnet
6};
ModelSDK ParameterDescription
Claude 3.5 SonnetLemurModel.AnthropicClaude3_5_SonnetClaude 3.5 Sonnet is the most intelligent model to date, outperforming Claude 3 Opus on a wide range of evaluations, with the speed and cost of Claude 3 Sonnet. This uses Anthropic’s Claude 3.5 Sonnet model version claude-3-5-sonnet-20240620.
Claude 3.0 OpusLemurModel.AnthropicClaude3_OpusClaude 3 Opus is good at handling complex analysis, longer tasks with many steps, and higher-order math and coding tasks.
Claude 3.0 HaikuLemurModel.AnthropicClaude3_HaikuClaude 3 Haiku is the fastest model that can execute lightweight actions.
Claude 3.0 SonnetLemurModel.AnthropicClaude3_SonnetClaude 3 Sonnet is a legacy model with a balanced combination of performance and speed for efficient, high-throughput tasks.

You can find more information on pricing for each model here.

Change the maximum output size

You can change the maximum output size in tokens by specifying the MaxOutputSize parameter. Up to 4000 tokens are allowed.

1var lemurTaskParams = new LemurTaskParams
2{
3 Prompt = prompt,
4 TranscriptIds = [transcript.Id],
5 MaxOutputSize = 1000
6};

Change the temperature

You can change the temperature by specifying the temperature parameter, ranging from 0.0 to 1.0.

Higher values result in answers that are more creative, lower values are more conservative.

1var lemurTaskParams = new LemurTaskParams
2{
3 Prompt = prompt,
4 TranscriptIds = [transcript.Id],
5 Temperature = 0.7f
6};

Send customized input

You can submit custom text inputs to LeMUR without transcript IDs. This allows you to customize the input, for example, you could include the speaker labels for the LLM.

To submit custom text input, use the InputText parameter instead of TranscriptIds.

1var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
2{
3 AudioUrl = "https://assembly.ai/sports_injuries.mp3",
4 SpeakerLabels = true
5});
6
7var textWithSpeakerLabels = string.Join(
8 "",
9 transcript.Utterances!.Select(utterance => $"Speaker {utterance.Speaker}:\n{utterance.Text}\n")
10);
11
12var lemurTaskParams = new LemurTaskParams
13{
14 Prompt = prompt,
15 InputText = textWithSpeakerLabels
16};
17
18var response = await client.Lemur.TaskAsync(lemurTaskParams);

Submit multiple transcripts

LeMUR can easily ingest multiple transcripts in a single API call.

You can feed in up to a maximum of 100 files or 100 hours, whichever is lower.

1var lemurTaskParams = new LemurTaskParams
2{
3 Prompt = prompt,
4 TranscriptIds = [id1, id2, id3]
5};

Delete LeMUR request data

You can delete the data for a previously submitted LeMUR request.

Response data from the LLM, as well as any context provided in the original request will be removed.

1var response = await client.Lemur.TaskAsync(lemurTaskParams);
2
3var deletionResponse = await client.Lemur.PurgeRequestDataAsync(response.RequestId);