AxAIWebLLMChatResponseDelta
type AxAIWebLLMChatResponseDelta = object;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L169
WebLLM: Streaming chat response structure
Properties
choices
choices: object[];Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L174
delta
{
content?: string;
role?: "assistant";
tool_calls?: object[];
}finish_reason?
optional finish_reason: "stop" | "length" | "tool_calls" | "content_filter";index
index: number;logprobs?
{
content: object[];
}created
created: number;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L172
id
id: string;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L170
model
model: AxAIWebLLMModelId;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L173
object
object: "chat.completion.chunk";Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L171
usage?
optional usage: object;Defined in: https://github.com/ax-llm/ax/blob/3306475085414d36aee4411ad2466e08e53bef8a/src/ax/ai/webllm/types.ts#L203
completion_tokens
completion_tokens: number;prompt_tokens
prompt_tokens: number;total_tokens
total_tokens: number;