openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Audio/AudioTranscriptionFormat.cs
31lines · modecode
| 1 | using System.ComponentModel; |
| 2 | |
| 3 | namespace OpenAI.Audio; |
| 4 | |
| 5 | /// <summary> |
| 6 | /// Specifies the format of the audio transcription. |
| 7 | /// </summary> |
| 8 | [CodeGenModel("AudioTranscriptionOptionsResponseFormat")] |
| 9 | public enum AudioTranscriptionFormat |
| 10 | { |
| 11 | /// <summary> Text. </summary> |
| 12 | [CodeGenMember("Text")] |
| 13 | [EditorBrowsable(EditorBrowsableState.Never)] |
| 14 | Text, |
| 15 | |
| 16 | /// <summary> Simple. </summary> |
| 17 | [CodeGenMember("Json")] |
| 18 | Simple, |
| 19 | |
| 20 | /// <summary> Verbose. </summary> |
| 21 | [CodeGenMember("VerboseJson")] |
| 22 | Verbose, |
| 23 | |
| 24 | /// <summary> SRT. </summary> |
| 25 | [CodeGenMember("Srt")] |
| 26 | Srt, |
| 27 | |
| 28 | /// <summary> VTT. </summary> |
| 29 | [CodeGenMember("Vtt")] |
| 30 | Vtt, |
| 31 | } |