File size: 186 Bytes
ee5d33c
 
 
 
08762ac
ee5d33c
 
1
2
3
4
5
6
7
8
import multiprocessing

# Gunicorn config variables
bind = "0.0.0.0:7860"  # Replace with your desired host and port
workers = 1
threads = 2 * multiprocessing.cpu_count()
timeout = 3600