Skip to content

Deno build of the official Typescript library for the OpenAI API.

License

Notifications You must be signed in to change notification settings

openai/openai-deno-build

Repository files navigation

OpenAI Node API Library - Deno build

This is a build produced from https://github.com/openai/openai-node – please go there to read the source and docs, file issues, etc.

Usage:

import OpenAI from "https://deno.land/x/openai@v4.47.3/mod.ts";

const client = new OpenAI();

Note that in most Deno environments, you can also do this:

import OpenAI from "npm:openai";