openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
mailinhphan/clientOptions

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

OpenAI/src/Custom/Audio/Streaming/StreamingSpeechAudioDeltaUpdate.cs

13lines · modecode

1using Microsoft.TypeSpec.Generator.Customizations;
2using System;
3
4namespace OpenAI.Audio;
5
6// CUSTOM: Renamed.
7[CodeGenType("DotNetSpeechAudioDeltaEvent")]
8public partial class StreamingSpeechAudioDeltaUpdate
9{
10 // CUSTOM: Rename.
11 [CodeGenMember("Audio")]
12 public BinaryData AudioBytes { get; }
13}
14