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

x/openai/core.ts>PagePromise#[Symbol.asyncIterator]

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Latest
method PagePromise.prototype.[Symbol.asyncIterator]
import { PagePromise } from "https://deno.land/x/openai@v4.52.2/core.ts";

Allow auto-paginating iteration on an unawaited list call, eg:

for await (const item of client.items.list()) { console.log(item) }