class ChatCompletionStream
implements AsyncIterable<ChatCompletionChunk>
extends AbstractChatCompletionRunner<ChatCompletionStreamEvents>
Re-export
import { ChatCompletionStream } from "https://deno.land/x/openai@v4.21.0/resources/beta/chat/completions.ts";
Methods
protected
_createChatCompletion(): Promise<ChatCompletion>protected
_fromReadableStream(readableStream: ReadableStream, options?: Core.RequestOptions): Promise<ChatCompletion>[Symbol.asyncIterator](): AsyncIterator<ChatCompletionChunk>
Static Methods
Intended for use on the frontend, consuming a stream produced with
.toReadableStream()
on the backend.
Note that messages sent to the model do not appear in .on('message')
in this context.