Skip to main content
Module

x/openai/resources/chat/completions.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.24.7/resources/chat/completions.ts";

Interfaces

A chat completion delta generated by streamed model responses.

Deprecated and replaced by tool_calls. The name and arguments of a function that should be called, as generated by the model.

Log probability information for the choice.

interface ChatCompletionChunk
import { type ChatCompletionChunk } from "https://deno.land/x/openai@v4.24.7/resources/chat/completions.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.