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

x/openai/resources/completions.ts>CompletionCreateParamsStreaming

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

Properties

stream: true

Whether to stream back partial progress. If set, 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.