# Environment Configuration for Speech Transcription App # Copy this file to .env and modify as needed # CUDA Configuration # Set to 'true' to use CUDA/GPU acceleration for all models # Set to 'false' to use CPU for all models # Default: false (CPU) USE_CUDA=false # Example configurations: # USE_CUDA=true # Use GPU acceleration (requires CUDA-compatible GPU) # USE_CUDA=false # Use CPU (works on all systems) # Note: When USE_CUDA=true, the following models will use GPU: # - Whisper (speech-to-text) # - RoBERTa (question classification) # - Sentence Boundary Detection # # GPU acceleration provides: # ✅ Faster processing (2-10x speedup) # ✅ Better real-time performance # ❌ Higher memory usage # ❌ Requires CUDA-compatible GPU # # CPU processing provides: # ✅ Works on all systems # ✅ Lower memory usage # ✅ More stable # ❌ Slower processing