Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 628 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 628 Bytes

Description

An OpenAI chatbot starter written with Langchain and the Nest framework.

Installation

$ npm install

Configuration

OPENAI_API_KEY='[your OpenAI API key]'
SYSTEM_PROMPT='You are a helpful chatbot that speaks in a Medeval dialect.'

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov