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

x/openai/resources/mod.ts>ChatCompletionCreateParamsStreaming

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
interface ChatCompletionCreateParamsStreaming
implements ChatCompletionCreateParamsBase
import { type ChatCompletionCreateParamsStreaming } from "https://deno.land/x/openai@v4.38.5/resources/mod.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.