Hermes is an advanced AI assistant created to help people who have lost their job to AI. It's built with OpenAI's GPT-4 and it can be used as a console application or via a web interface.
These instructions will get you a copy of the project up and running on your local machine.
- Python 3.6 or later
- An OpenAI API key
-
Clone this repository:
git clone https://github.com/yourusername/hermes.git
-
Enter the project directory:
cd hermes
-
Install the required Python packages:
pip install -r requirements.txt
-
Obtain an API key from OpenAI at
https://beta.openai.com/signup/
. -
Set the
OPENAI_API_KEY
environment variable to your API key.On Unix systems, you can do this with the
export
command:export OPENAI_API_KEY='your-api-key'
On Windows, you can use the
set
command:set OPENAI_API_KEY='your-api-key'
You can interact with Hermes in two ways:
-
Console Application
Run
chat.py
to talk with the predefined AI:python chat.py
-
Web Server
You can also run a Flask web server to use Hermes through a web interface.
The easiest way to do this is to run the start script:
On Linux:
./start.sh
On Windows:
start.bat
This project is licensed under the MIT License.- see the LICENSE file for details.
- OpenAI for the amazing GPT-4 model