Class ChatResponse
public class ChatResponse : ChatResponseUpdate
- Inheritance
-
ChatResponse
- Inherited Members
Properties
EvalCount
number of tokens the response
[JsonPropertyName("eval_count")]
public int EvalCount { get; set; }
Property Value
EvalDuration
time in nanoseconds spent generating the response
[JsonPropertyName("eval_duration")]
public long EvalDuration { get; set; }
Property Value
LoadDuration
time spent in nanoseconds loading the model
[JsonPropertyName("load_duration")]
public long LoadDuration { get; set; }
Property Value
PromptEvalCount
number of tokens in the prompt
[JsonPropertyName("prompt_eval_count")]
public int PromptEvalCount { get; set; }
Property Value
PromptEvalDuration
time spent in nanoseconds evaluating the prompt
[JsonPropertyName("prompt_eval_duration")]
public long PromptEvalDuration { get; set; }
Property Value
TotalDuration
time spent generating the response
[JsonPropertyName("total_duration")]
public long TotalDuration { get; set; }