11 references to Text
Microsoft.Extensions.AI.Abstractions (1)
SpeechToText\SpeechToTextResponseUpdate.cs (1)
101public override string ToString() => Text;
Microsoft.Extensions.AI.Abstractions.Tests (7)
SpeechToText\SpeechToTextClientExtensionsTests.cs (1)
78Assert.Equal("world", update.Text);
SpeechToText\SpeechToTextClientTests.cs (3)
71Assert.Equal("hello ", updates[0].Text); 72Assert.Equal("world ", updates[1].Text); 73Assert.Equal("!", updates[2].Text);
SpeechToText\SpeechToTextResponseUpdateTests.cs (3)
19Assert.Empty(update.Text); 38Assert.Empty(update.Text); 74Assert.Equal("text-1text-2", update.Text);
Microsoft.Extensions.AI.Integration.Tests (1)
SpeechToTextClientIntegrationTests.cs (1)
54sb.Append(chunk.Text);
Microsoft.Extensions.AI.OpenAI.Tests (2)
OpenAISpeechToTextClientTests.cs (2)
172Assert.Contains("I finally got back to the gym the other day", update.Text); 207Assert.Contains("I finally got back to the gym the other day", update.Text);