DavidShan40 / openai-quickstart-node

Node.js example app from the OpenAI API quickstart tutorial

Home Page:https://platform.openai.com/docs/quickstart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setup

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

  2. Clone this repository

  3. Navigate into the project directory

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

    $ npm install
  5. Set up your environment variables manually by following the instructions in the tutorial

    OR

    Set up your environment variables automatically by following the instructions below:

    1. Make a copy of the example environment variables file

      On Linux systems:

      $ cp .env.example .env

      On Windows:

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

  6. 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

License:MIT License


Languages

Language:JavaScript 77.7%Language:CSS 22.3%