AxAIWebLLMChatResponse
type AxAIWebLLMChatResponse = object;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L126
WebLLM: Chat response structure
Properties
choices
choices: object[];Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L131
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/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L129
id
id: string;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L127
model
model: AxAIWebLLMModelId;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L130
object
object: "chat.completion";Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L128
usage
usage: object;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L159
completion_tokens
completion_tokens: number;prompt_tokens
prompt_tokens: number;total_tokens
total_tokens: number;