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 @@ -12,10 +12,6 @@ public enum ASRProvider
///
/// </summary>
Elevenlabs,
/// <summary>
///
/// </summary>
RealtimeScribeV1,
}

/// <summary>
Expand All @@ -31,7 +27,6 @@ public static string ToValueString(this ASRProvider value)
return value switch
{
ASRProvider.Elevenlabs => "elevenlabs",
ASRProvider.RealtimeScribeV1 => "realtime_scribe_v1",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
};
}
Expand All @@ -43,7 +38,6 @@ public static string ToValueString(this ASRProvider value)
return value switch
{
"elevenlabs" => ASRProvider.Elevenlabs,
"realtime_scribe_v1" => ASRProvider.RealtimeScribeV1,
_ => null,
};
}
Expand Down
1 change: 0 additions & 1 deletion src/libs/ElevenLabs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9596,7 +9596,6 @@ components:
title: ASRProvider
enum:
- elevenlabs
- realtime_scribe_v1
type: string
ASRQuality:
title: ASRQuality
Expand Down
Loading