Quick way to create OpenAI bots and test them out.
- if you don't have node and yarn, follow some tutorial to do this.
cd openai-bot-cli
- Run
yarn
and thenyarn store_keys
to store your key and organization into theopenai_key.js
file - To run existing bots: see
scripts
section inpackage.json
and run the bot you want, ex:yarn haikubot
- To add a bot, make a folder, add the index.js and prompt.txt files and then add it to the
scripts
section inpackage.json
similar to the other example bots.