ChatGPT has become one of the most popular web applications of all-time. The firm, OpenAI, that created ChatGPT actually has an API that allow access to the same models that ChatGPT uses and more. This article will demonstrate quickstart usage for OpenAI's API for Node.js.
This requires a credit card, but you are provided $5 credits before you are change
First you'll need to create an API account via OpenAI's platform. It's free to create.
Create an API key and save it securely somewhere as it is required to make requests to OpenAI.
Create a Nodejs project. Run
npm init
if you like.Install the
openai
package:
npm install openai@^4.0.0
or
yarn install openai@^4.0.0
- Create a
index.js
and paste the following code (sourced from OpenAI docs):
import OpenAI from "openai";
const openai = new OpenAI({
organization: 'YOUR_ORG_ID',
});
You are now ready to make other requests!
Top comments (0)