2 writes to RawRepresentation
Microsoft.Extensions.AI.Abstractions (1)
SpeechToText\SpeechToTextResponse.cs (1)
88
RawRepresentation
= RawRepresentation,
Microsoft.Extensions.AI.OpenAI (1)
OpenAISpeechToTextClient.cs (1)
137
RawRepresentation
= 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)
172
Assert.NotNull(update.
RawRepresentation
);
173
Assert.IsType<AudioTranscription>(update.
RawRepresentation
);
207
Assert.NotNull(update.
RawRepresentation
);
208
Assert.IsType<AudioTranslation>(update.
RawRepresentation
);
328
Assert.IsType<StreamingAudioTranscriptionTextDeltaUpdate>(updates[0].
RawRepresentation
);
335
var segmentRaw = Assert.IsType<StreamingAudioTranscriptionTextSegmentUpdate>(updates[1].
RawRepresentation
);
342
Assert.IsType<StreamingAudioTranscriptionTextDoneUpdate>(updates[2].
RawRepresentation
);