openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI/src/Custom/Audio/Streaming/StreamingSpeechAudioDeltaUpdate.cs
13lines · modecode
| 1 | using Microsoft.TypeSpec.Generator.Customizations; |
| 2 | using System; |
| 3 | |
| 4 | namespace OpenAI.Audio; |
| 5 | |
| 6 | // CUSTOM: Renamed. |
| 7 | [CodeGenType("DotNetSpeechAudioDeltaEvent")] |
| 8 | public partial class StreamingSpeechAudioDeltaUpdate |
| 9 | { |
| 10 | // CUSTOM: Rename. |
| 11 | [CodeGenMember("Audio")] |
| 12 | public BinaryData AudioBytes { get; } |
| 13 | } |
| 14 | |