Bittensor-Benchmark-Results / gunicorn_config.py
Defalt-404's picture
fixed wsgi entrypoint
08762ac
raw
history blame
No virus
186 Bytes
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