大模型接口远程访问
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
238 B

  1. #Deployment commands: gunicorn chatGPT_Web:app -c gunicorn_config.py
  2. bind = '0.0.0.0:5001' # your IP:PORT
  3. worker_class = 'gevent'
  4. worker_connections = 1000
  5. workers = 1 # Number of worker processes
  6. timeout = 60
  7. loglevel = 'debug'