Testing / .env.example
Sidak Singh
question boundary works
7b7db64
raw
history blame contribute delete
869 Bytes
# 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