Table of Contents

Class ChatResponse

Namespace
AutoGen.Ollama
Assembly
AutoGen.Ollama.dll
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

int

EvalDuration

time in nanoseconds spent generating the response

[JsonPropertyName("eval_duration")]
public long EvalDuration { get; set; }

Property Value

long

LoadDuration

time spent in nanoseconds loading the model

[JsonPropertyName("load_duration")]
public long LoadDuration { get; set; }

Property Value

long

PromptEvalCount

number of tokens in the prompt

[JsonPropertyName("prompt_eval_count")]
public int PromptEvalCount { get; set; }

Property Value

int

PromptEvalDuration

time spent in nanoseconds evaluating the prompt

[JsonPropertyName("prompt_eval_duration")]
public long PromptEvalDuration { get; set; }

Property Value

long

TotalDuration

time spent generating the response

[JsonPropertyName("total_duration")]
public long TotalDuration { get; set; }

Property Value

long