Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai/lib/ChatCompletionStream.ts>ChatCompletionSnapshot

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
namespace ChatCompletionSnapshot
import { ChatCompletionSnapshot } from "https://deno.land/x/openai@v4.52.1/lib/ChatCompletionStream.ts";
interface ChatCompletionSnapshot
import { type ChatCompletionSnapshot } from "https://deno.land/x/openai@v4.52.1/lib/ChatCompletionStream.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.

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.

model: string

The model to generate the completion.

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.