import { ChatCompletionChunk } from "https://deno.land/x/openai@v4.53.2/resources/chat/completions.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.53.2/resources/chat/completions.ts";
Represents a streamed chunk of a chat completion response returned by model, based on the provided input.
Properties
A list of chat completion choices. Can contain more than one elements if n
is
greater than 1. Can also be empty for the last chunk if you set
stream_options: {"include_usage": true}
.
The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.
The service tier used for processing the request. This field is only included if
the service_tier
parameter is specified in the request.
This fingerprint represents the backend configuration that the model runs with.
Can be used in conjunction with the seed
request parameter to understand when
backend changes have been made that might impact determinism.