openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI/src/Generated/Models/Audio/AudioTranscriptionCustomServerVadChunkingStrategy.cs
25lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System; |
| 6 | using System.Collections.Generic; |
| 7 | using System.Diagnostics.CodeAnalysis; |
| 8 | |
| 9 | namespace OpenAI.Audio |
| 10 | { |
| 11 | [Experimental("OPENAI001")] |
| 12 | public partial class AudioTranscriptionCustomServerVadChunkingStrategy : AudioTranscriptionCustomChunkingStrategy |
| 13 | { |
| 14 | public AudioTranscriptionCustomServerVadChunkingStrategy() : this(InternalChunkingStrategyConfigType.ServerVad, null, default, default, default) |
| 15 | { |
| 16 | } |
| 17 | |
| 18 | internal AudioTranscriptionCustomServerVadChunkingStrategy(InternalChunkingStrategyConfigType kind, IDictionary<string, BinaryData> additionalBinaryDataProperties, TimeSpan? prefixPadding, TimeSpan? silenceDuration, float? detectionThreshold) : base(kind, additionalBinaryDataProperties) |
| 19 | { |
| 20 | PrefixPadding = prefixPadding; |
| 21 | SilenceDuration = silenceDuration; |
| 22 | DetectionThreshold = detectionThreshold; |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |