2 writes to RawRepresentation
Microsoft.Extensions.AI.Abstractions (1)
SpeechToText\SpeechToTextResponse.cs (1)
88RawRepresentation = RawRepresentation,
Microsoft.Extensions.AI.OpenAI (1)
OpenAISpeechToTextClient.cs (1)
137RawRepresentation = update,
8 references to RawRepresentation
Microsoft.Extensions.AI.Abstractions (1)
SpeechToText\SpeechToTextResponseUpdate.cs (1)
28/// all have different <see cref="SpeechToTextResponseUpdate.RawRepresentation"/> objects whereas there's
Microsoft.Extensions.AI.OpenAI.Tests (7)
OpenAISpeechToTextClientTests.cs (7)
172Assert.NotNull(update.RawRepresentation); 173Assert.IsType<AudioTranscription>(update.RawRepresentation); 207Assert.NotNull(update.RawRepresentation); 208Assert.IsType<AudioTranslation>(update.RawRepresentation); 328Assert.IsType<StreamingAudioTranscriptionTextDeltaUpdate>(updates[0].RawRepresentation); 335var segmentRaw = Assert.IsType<StreamingAudioTranscriptionTextSegmentUpdate>(updates[1].RawRepresentation); 342Assert.IsType<StreamingAudioTranscriptionTextDoneUpdate>(updates[2].RawRepresentation);