# Which docker image to run IMAGE=${IMAGE:-willow-inference-server} # HTTPS Listen port LISTEN_PORT_HTTPS=${LISTEN_PORT_HTTPS:-19001} # Listen port LISTEN_PORT=${LISTEN_PORT:-19000} # Media port range # WebRTC dynamically negotiates UDP ports for each session # You should keep this as small as possible for expected WebRTC connectionsMEDIA_PORT_RANGE=${MEDIA_PORT_RANGE:-10000-10050} # Listen IP LISTEN_IP=${LISTEN_IP:-0.0.0.0} # GPUS - WIP for docker compose GPUS="all" # Allow forwarded IPs. This is a list of hosts to allow parsing of X-Forwarded headers from # FORWARDED_ALLOW_IPS= # allow all FORWARDED_ALLOW_IPS="*" # Shared memory size for docker SHM_SIZE=1g # Docker image tag TAG=latest NAME=wis # c2translate config options CT2_VERBOSE=0 QUANT="float16" container="docker" # Log level - acceptable values are debug, info, warning, error, critical. Suggest info or debug. LOG_LEVEL=${LOG_LEVEL:-warning} # Media port range # WebRTC dynamically negotiates UDP ports for each session # You should keep this as small as possible for expected WebRTC connections MEDIA_PORT_RANGE=${MEDIA_PORT_RANGE:-10000-10050} ### TBC if these work as envs ### # The default whisper model to use. Options are "tiny", "base", "small", "medium", "large" WHISPER_MODEL_DEFAULT="medium"