import { ChatCompletionChunk } from "https://deno.land/x/openai@v4.29.0/resources/mod.ts";
Interfaces
A chat completion delta generated by streamed model responses. | |
Log probability information for the choice. |
import { type ChatCompletionChunk } from "https://deno.land/x/openai@v4.29.0/resources/mod.ts";
Represents a streamed chunk of a chat completion response returned by model, based on the provided input.
Properties
choices: Array<ChatCompletionChunk.Choice>
A list of chat completion choices. Can be more than one if n
is greater
than 1.
The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.