openai / openai-quickstart-node

Node.js example app from the OpenAI API quickstart tutorial

Home Page:https://platform.openai.com/docs/quickstart?context=node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenAI API Quickstart - Node.js example app

This is an example chat app intended to get you started with your first OpenAI API project. It uses the Chat Completions API to create a simple general purpose chat app with streaming.

Basic request

To send your first API request with the OpenAI Node SDK, make sure you have the right dependencies installed and then run the following code:

import OpenAI from "openai";

const openai = new OpenAI();

async function main() {
  const completion = await openai.chat.completions.create({
    messages: [{ role: "system", content: "You are a helpful assistant." }],
    model: "gpt-3.5-turbo",
  });

  console.log(completion.choices[0]);
}

main();

This quickstart app builds on top of the example code above, with streaming and a UI to visualize messages.

Setup

  1. If you don’t have Node.js installed, install it from nodejs.org (Node.js version >= 16.0.0 required)

  2. Clone this repository

  3. Navigate into the project directory

    $ cd openai-quickstart-node
  4. Install the requirements

    $ npm install
  5. Make a copy of the example environment variables file

    On Linux systems:

    $ cp .env.example .env

    On Windows:

    $ copy .env.example .env
  6. Add your API key to the newly created .env file

  7. Run the app

    $ npm run dev

You should now be able to access the app at http://localhost:3000! For the full context behind this example app, check out the tutorial.

About

Node.js example app from the OpenAI API quickstart tutorial

https://platform.openai.com/docs/quickstart?context=node

License:MIT License


Languages

Language:JavaScript 69.2%Language:CSS 30.8%