Skip to main content
Module

x/openai/resources/chat/mod.ts>ChatCompletionChunk

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
namespace ChatCompletionChunk
import { ChatCompletionChunk } from "https://deno.land/x/openai@v4.21.0/resources/chat/mod.ts";
interface ChatCompletionChunk
import { type ChatCompletionChunk } from "https://deno.land/x/openai@v4.21.0/resources/chat/mod.ts";

Represents a streamed chunk of a chat completion response returned by model, based on the provided input.

Properties

id: string

A unique identifier for the chat completion. Each chunk has the same ID.

A list of chat completion choices. Can be more than one if n is greater than 1.

created: number

The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.

model: string

The model to generate the completion.

object: "chat.completion.chunk"

The object type, which is always chat.completion.chunk.

optional
system_fingerprint: string

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.