-
Notifications
You must be signed in to change notification settings - Fork 4
Setting Up (Without TTS Endpoint)
If you only care about just running LLMs and do not care about the optional TTS endpoints, this set up guide is for you
There are many ways to get started, here are the following:
-
pip install -r requirements.txt
-
python server.py
(should now be running on localhost:1337) -
Perform a test call by running
python testcalls.py
in a separate terminal
This uses the latest image version in the Docker Hub repository
docker run -d --name keyless -p 1337:1337 callbacked/keyless:latest
If you don't want to use the Docker Hub image and want to do it yourself, you can do it one of two ways, its up to personal preference:
-
git clone https://github.com/callbacked/keyless-gpt-wrapper-api && cd keyless-gpt-wrapper-api
-
docker build -t keyless:latest .
-
docker run -d --name keyless -p 1337:1337 keyless:latest
-
git clone https://github.com/callbacked/keyless-gpt-wrapper-api && cd keyless-gpt-wrapper-api
-
docker-compose up -d