A personal assistant, built with Typescript, Node.js and Open AI
- NPM (Node Package Manager). Installation Guide
- OpenAI API Key. Get API Key
For automatic installation, just simply run the install.sh file.
> ./install.shHowever, if you prefer manual installation, you can run:
# Install typescript
> npm install -g typescript
# Install the necessary packages
> npm install
# Copy the env from example
> cp .env.example .envLastly, put your OpenAI API Key in the .env file.
- Create
app.tsin the root folder and put the code below:
import Robo from './src';
Robo.startChatting();- Run
npm start roboin console. - Enjoy!