This repository serves as a basic Node.js boilerplate for experimenting with or starting to implement a prompt flow using OpenAI. It's a great starting point for developers looking to test and automate certain tasks using OpenAI's language models.
Before you start, you need to add a .env
file at the root of the project. This file should contain your OpenAI API key:
OPENAI_API_KEY=<your_openai_api_key>
Replace <your_openai_api_key>
with your actual OpenAI API key.
To build the project, you need to install the dependencies first. Run the following command:
npm install
After the dependencies are installed, you can build the project using:
npm run build
This project comes with a pre-configured debug configuration in the .vscode/launch.json
file. This allows you to start a debugging session right from your Visual Studio Code.
Before launching the debugger, make sure you have installed the dependencies using npm install
. The debugger will launch the program defined in ${workspaceFolder}/src/index.ts
.
The preLaunchTask
named "Build" refers to a task defined in the .vscode/tasks.json
file, which runs the build
script before launching the debugger.