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

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

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

Properties

optional
stream: false | null

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.