| # Environment Variables for Audio Intelligence System | |
| # REQUIRED: Hugging Face Token for pyannote.audio models | |
| # Get your token from: https://huggingface.co/settings/tokens | |
| # You need to accept the license for pyannote/speaker-diarization-3.1 | |
| HUGGINGFACE_TOKEN=your_hf_token_here | |
| # OPTIONAL: Model cache directory (defaults to ~/.cache/huggingface) | |
| # HF_MODELS_CACHE=/path/to/model/cache | |
| # OPTIONAL: Output directory (defaults to ./outputs) | |
| # OUTPUT_DIR=./outputs | |
| # OPTIONAL: Temporary files directory (defaults to ./temp_files) | |
| # TEMP_DIR=./temp_files | |
| # OPTIONAL: Default model sizes (for performance tuning) | |
| # WHISPER_MODEL_SIZE=small | |
| # TARGET_LANGUAGE=en | |
| # OPTIONAL: Performance settings | |
| # MAX_WORKERS=1 | |
| # USE_GPU=false |