Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ public enum SpeechModel
/// <summary>
///
/// </summary>
Nano,
/// <summary>
///
/// </summary>
Slam1,
/// <summary>
///
Expand All @@ -39,7 +35,6 @@ public static string ToValueString(this SpeechModel value)
return value switch
{
SpeechModel.Best => "best",
SpeechModel.Nano => "nano",
SpeechModel.Slam1 => "slam-1",
SpeechModel.Universal => "universal",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
Expand All @@ -53,7 +48,6 @@ public static string ToValueString(this SpeechModel value)
return value switch
{
"best" => SpeechModel.Best,
"nano" => SpeechModel.Nano,
"slam-1" => SpeechModel.Slam1,
"universal" => SpeechModel.Universal,
_ => null,
Expand Down
4 changes: 0 additions & 4 deletions src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2201,7 +2201,6 @@ components:
x-fern-sdk-group-name: transcripts
enum:
- best
- nano
- slam-1
- universal
x-fern-enum:
Expand All @@ -2214,9 +2213,6 @@ components:
best:
name: Best
description: The model optimized for accuracy, low latency, ease of use, and mutli-language support.
nano:
name: Nano
description: A lightweight, lower cost model for a wide range of languages.
x-aai-enum:
best:
label: Best
Expand Down