Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/openai/openai-deno-build

Deno build of the official Typescript library for the OpenAI API.
https://github.com/openai/openai-deno-build

deno openai openai-api

Last synced: 6 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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:

```ts
import OpenAI from "https://deno.land/x/[email protected]/mod.ts";

const client = new OpenAI();
```

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

```ts
import OpenAI from "npm:openai";
```