0.3.0
A minimal wrapper for the OpenAI API
Repository
Current version released
2 years ago
Versions
Minimal OpenAI Library
A minimal library for the OpenAI API.
The included functionality is:
- Model Retrieval
- Completions (text/code generation)
- Edit
- Image Generation
- Moderation
The missing features are:
- Fine-tuning
- Embeddings
- Files
You have to supply an API key to use the API. You can get one from OpenAI.
Usage
I decided to leave it as “unopinionated” as possible, so there are no default values for any of the parameters. You have to supply all of them.
import { OpenAI } from "https://deno.land/x/openai_mini/mod.ts";
const openai = new OpenAI('your-api-key');
const prompt = "const helloWorld = ("
const completion = await openai.createCompletion({
model: "code-davinci-002",
prompt: `${prompt}`,
max_tokens: 400,
temperature: 0,
top_p: 1,
n: 1,
stream: false,
logprobs: null,
stop: "",
});
console.log(completion.choices[0].text);
const moderation = await openai.createModeration({input: completion.choices[0].text})
const edit = await openai.createEdit({
model: "text-edit-davinci-001"
instruction: "Fix any spelling mistake"
input: "I am a gewd speler"
})
const image = await openai.createImage({
prompt: "an image of a brown cat holding a piece of pizza",
n: 1,
size: "1024x1024",
response_format: "url"
})
const models = await openai.getModels()