AxAIWebLLMChatResponse
type AxAIWebLLMChatResponse = object;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L86
WebLLM: Chat response structure
Properties
choices
choices: object[];
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L91
finish_reason
finish_reason: "stop" | "length" | "tool_calls" | "content_filter";
index
index: number;
logprobs?
{
content: object[];
}
message
{
content?: string;
role: "assistant";
tool_calls?: object[];
}
created
created: number;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L89
id
id: string;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L87
model
model: AxAIWebLLMModel;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L90
object
object: "chat.completion";
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L88
usage
usage: object;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/webllm/types.ts#L119
completion_tokens
completion_tokens: number;
prompt_tokens
prompt_tokens: number;
total_tokens
total_tokens: number;