Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/openai/openai-deno-build
- Owner: openai
- License: apache-2.0
- Created: 2023-10-27T18:37:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T23:06:11.000Z (3 months ago)
- Last Synced: 2024-10-29T15:51:27.008Z (3 months ago)
- Topics: deno, openai, openai-api
- Language: TypeScript
- Homepage: https://deno.land/x/openai
- Size: 1.39 MB
- Stars: 120
- Watchers: 8
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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";
```