Change model and parameters
Change the model type
LeMUR features the following LLMs:
- Claude 3.7 Sonnet
- Claude 3.5 Sonnet
- Claude 3.5 Haiku
- Claude 3 Opus
- Claude 3 Haiku
- Claude 3 Sonnet (Legacy - Sunsetting on 7/21/25)
You can switch the model by specifying the final_model
parameter.
Python SDK
Python
Typescript SDK
Typescript
C#
Ruby
PHP
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 max_output_size
parameter.
Python SDK
Python
Typescript SDK
Typescript
C#
Ruby
PHP
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.
Python SDK
Python
Typescript SDK
Typescript
C#
Ruby
PHP
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 input_text
parameter
Python SDK
Python
Typescript SDK
Typescript
C#
Ruby
PHP
The total input limit for the prompt
, context
, and input_text
parameters combined is 200,000 tokens. This reflects the maximum context window supported by the model. Be sure to account for all three fields when structuring your request.
Submit multiple transcripts
LeMUR can easily ingest multiple transcripts in a single API call.
You can submit up to 100 hours of audio.
Python SDK
Python
Typescript SDK
Typescript
C#
Ruby
PHP
Delete 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.
Python SDK
Python
TypeScript SDK
TypeScript
C#
Ruby
PHP
API reference
You can find detailed information about all LeMUR API endpoints and parameters in the LeMUR API reference.