mirror of
https://github.com/sean1832/GPT-Brain
synced 2024-11-18 21:25:53 +00:00
batch-programs | ||
console_app | ||
example_prompt | ||
web_ui | ||
.gitattributes | ||
.gitignore | ||
LICENSE | ||
README.md | ||
requirements.txt | ||
run-webUI.bat | ||
setup.bat |
Auto Setup
What you need
- Install python
3.11
- OpenAI API keys
.bat file
- Run
setup.bat
- Enter OpenAI API Key
Manual Setup
Python
- Make sure to install python
3.11
- Create venv using
python -m venv venv
under root project root directory - Enter venv using
venv\Scripts\activate
- Update pip by using
python -m pip install --upgrade pip
- Installing required libraries using
pip3 install -r requirement.txt
API Key file
- Create API Key file using cmd with command
if not exist .user\ (md .user\) & echo [YOUR API KEYS]> .user\API-KEYS.txt