gpt3
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

GPT3 CLI API

A simple NodeJS wrapper library and CLI to interface with OpenAI's Beta API. Written in Typescript.

Requirements

When using the CLI, the API key and secret key must be defined in your environment under OPENAI_KEY and OPENAI_SECRET_KEY respectively.

When using this package as a library, you may either provide the keys in the environment as above, or provide them as a final auth parameter.

Installation

If CLI:

npm i -g gpt3

If programmatic:

npm i gpt3

CLI Usage

You pass in the starter text as the first parameter, and the tool returns the completion.

> gpt3 "Once upon a time, there was a thing..."

"Once upon a time, there was a thing that did this, etc, foobar."

Programmatic Usage

import { getCompletion } from "gpt3";
 
const result = await getCompletion("Once upon a time, ");
 
// etc.

Limitations and Future Work

Features not supported, but which I eventually plan to:

  • Streaming
  • Simple filtering, optional clean-up logic
  • Automatic truth checking
  • Search API
  • Fine-tuning API (Once it comes out)
  • Pre-selected prompt generation logic

Package Sidebar

Install

npm i gpt3

Weekly Downloads

17

Version

2.1.1

License

MIT

Unpacked Size

9.85 kB

Total Files

26

Last publish

Collaborators

  • mpoteat