4 references to ConcatText
Microsoft.Extensions.AI.Abstractions (4)
ChatCompletion\ChatMessage.cs (1)
76public string Text => Contents.ConcatText();
ChatCompletion\ChatResponseUpdate.cs (1)
79public string Text => _contents is not null ? _contents.ConcatText() : string.Empty;
SpeechToText\SpeechToTextResponse.cs (1)
70public string Text => _contents?.ConcatText() ?? string.Empty;
SpeechToText\SpeechToTextResponseUpdate.cs (1)
90public string Text => _contents?.ConcatText() ?? string.Empty;