8 references to Text
Microsoft.Extensions.AI.Abstractions (3)
ChatCompletion\ChatOptions.cs (1)
38
/// This property can be set to <see cref="ChatResponseFormat.
Text
"/> to specify that the response should be unstructured text,
ChatCompletion\ChatResponseFormatText.cs (2)
10
/// Use <see cref="ChatResponseFormat.
Text
"/> to get an instance of <see cref="ChatResponseFormatText"/>.
16
/// <remarks> Use <see cref="ChatResponseFormat.
Text
"/> to get an instance of <see cref="ChatResponseFormatText"/>.</remarks>
Microsoft.Extensions.AI.Abstractions.Tests (4)
ChatCompletion\ChatResponseFormatTests.cs (4)
17
Assert.Same(ChatResponseFormat.
Text
, ChatResponseFormat.
Text
);
50
string json = JsonSerializer.Serialize(ChatResponseFormat.
Text
, TestJsonSerializerContext.Default.ChatResponseFormat);
54
Assert.Equal(ChatResponseFormat.
Text
, result);
Microsoft.Extensions.AI.AzureAIInference.Tests (1)
AzureAIInferenceChatClientTests.cs (1)
334
ResponseFormat = ChatResponseFormat.
Text
,