/command_line_chatbot

A simple ChatGPT like chat bot that can be run from the command line

Primary LanguagePythonThe UnlicenseUnlicense

Command Line Chat Bot

The README below is currently copied directly from atomic14/command_line_chatbot and so needs to be updated for this repo...


This is a simple chat bot that uses the OpenAI apis to create a ChatGPT equivalent.

You can watch a great video walkthrough here.

Walkthrough Video

Setup

Make sure you have python3 installed:

python3 --version

Create a virtual environment and install the dependencies:

Linux/Mac:

python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt

Windows:

python -m venv venv
venv\Scripts\activate.bat
pip install -r requirements.txt

Configuration

Copy env.sample to .env and add your OpenAI API key to the file.

OPENAI_API_KEY=<<YOUR_API_KEY>>

Edit main.py and replace <<PUT THE PROMPT HERE>> with your prompt:

e.g. Create a simple AI cocktail assistant

INSTRUCTIONS = """You are an AI assistant that is an expert in alcoholic beverages.
You know about cocktails, wines, spirits and beers.
You can provide advice on drink menus, cocktail ingredients, how to make cocktails, and anything else related to alcoholic drinks.
If you are unable to provide an answer to a question, please respond with the phrase "I'm just a simple barman, I can't help with that."
Please aim to be as helpful, creative, and friendly as possible in all of your responses.
Do not use any external URLs in your answers. Do not refer to any blogs in your answers.
Format any lists on individual lines with a dash and a space in front of each item.
"""

Running

To run just do the following:

Linux/Mac:

. ./venv/bin/activate
python main.py

Windows:

venv\Scripts\activate.bat
python main.py