Skip to main content
Module

x/openai/resources/chat/completions.ts>ChatCompletionCreateParamsStreaming

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

Properties

stream: true

If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a data: [DONE] message. Example Python code.