gpt_chat_bot/scripts/start-chat.sh
2023-09-24 06:32:49 +03:00

11 lines
247 B
Bash

#! /bin/bash
echo "starting chat"
gunicorn run:create_app \
-- workers ${WORKERS_COUNT} \
--bind ${APP_HOST}:${APP_PORT} \
--worker-class uvicorn.workers.UvicornWorker \
--timeout 150 \
--max-requests 2000 \
--max-requests-jitter 400