Property Response
Response
Gets the generated text response.
public TextGenerationResult Response { get; }
Property Value
Examples
var result = await chat.SubmitAsync("Summarize the document.");
Console.WriteLine(result.Response.Completion);
Gets the generated text response.
public TextGenerationResult Response { get; }
var result = await chat.SubmitAsync("Summarize the document.");
Console.WriteLine(result.Response.Completion);