From 06c483a6b63074e0f1e0ef2ea862c42f0088ba4f Mon Sep 17 00:00:00 2001 From: Amanda DiNoto Date: Fri, 6 Mar 2026 05:26:46 -0500 Subject: [PATCH] Update README.md Remove mention of LeMUR --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index c95e9d6..63b3456 100644 --- a/README.md +++ b/README.md @@ -909,7 +909,7 @@ print(transcript.text) ### Retrieving Multiple Transcripts as a Group -You can also retrieve multiple existing transcripts and combine them into a single `TranscriptGroup` object. This allows you to perform operations on the transcript group as a single unit, such as querying the combined transcripts with LeMUR. +You can also retrieve multiple existing transcripts and combine them into a single `TranscriptGroup` object. This allows you to perform operations on the transcript group as a single unit. ```python import assemblyai as aai @@ -919,9 +919,6 @@ aai.settings.api_key = "YOUR_API_KEY" transcript_group = aai.TranscriptGroup.get_by_ids(["", ""]) -summary = transcript_group.lemur.summarize(context="Customers asking for cars", answer_format="TLDR") - -print(summary) ``` ### Retrieving Transcripts Asynchronously