# audio configuration # Copy to deploy/.env and fill ALL required values. # Service must FAIL to start if required vars are missing. # ============================================================================= # REQUIRED (no defaults) # ============================================================================= # Whisper model name (tiny, base, small, medium, large-v2, large-v3, large-v3-turbo) AUDIO_MODEL=large-v3-turbo # Device: cuda or cpu AUDIO_DEVICE=cuda # Model cache directory (shared with other modules) AUDIO_CACHE_DIR=/cai2_ds_storage/hf_cache # ============================================================================= # Optional Configuration # ============================================================================= # Compute type: float16, int8, int8_float16 (int8 recommended for GPU) AUDIO_COMPUTE_TYPE=int8 # Transcription settings # AUDIO_BEAM_SIZE=5 # AUDIO_BEST_OF=5 # AUDIO_TEMPERATURE=0.0 # Server settings # AUDIO_HOST=0.0.0.0 # AUDIO_PORT=8200 # AUDIO_LOG_LEVEL=INFO # Upload limits (in MB) # AUDIO_MAX_FILE_SIZE_MB=500 # ============================================================================= # Optional Nginx Timeouts (for api-nginx profile) # ============================================================================= # NGINX_CONNECT_TIMEOUT=60s # NGINX_SEND_TIMEOUT=300s # NGINX_READ_TIMEOUT=600s