3 writes to RawRepresentation
Microsoft.Extensions.AI.Abstractions (1)
TextToSpeech\TextToSpeechResponse.cs (1)
61RawRepresentation = RawRepresentation,
Microsoft.Extensions.AI.OpenAI (2)
OpenAITextToSpeechClient.cs (2)
123RawRepresentation = deltaUpdate, 132RawRepresentation = doneUpdate,
6 references to RawRepresentation
Microsoft.Extensions.AI.Abstractions (1)
TextToSpeech\TextToSpeechResponseUpdate.cs (1)
27/// all have different <see cref="TextToSpeechResponseUpdate.RawRepresentation"/> objects whereas there's
Microsoft.Extensions.AI.OpenAI.Tests (5)
OpenAITextToSpeechClientIntegrationTests.cs (1)
36Assert.NotNull(update.RawRepresentation);
OpenAITextToSpeechClientTests.cs (4)
270Assert.NotNull(update.RawRepresentation); 321Assert.IsType<StreamingSpeechAudioDeltaUpdate>(updates[0].RawRepresentation); 328Assert.IsType<StreamingSpeechAudioDeltaUpdate>(updates[1].RawRepresentation); 336Assert.IsType<StreamingSpeechAudioDoneUpdate>(updates[2].RawRepresentation);