Spaces:
Sleeping
Sleeping
| # =========================================== | |
| # Variables d'environnement pour HOLOKIA-AVATAR | |
| # =========================================== | |
| # Clé API Groq (requise) | |
| GROQ_API_KEY=gsk_your_groq_api_key_here | |
| # Configuration Hugging Face (pour le déploiement) | |
| HF_USERNAME=your_huggingface_username | |
| SPACE_NAME=holokia-avatar | |
| # Configuration des services | |
| PYTHONPATH=/app | |
| PORT=7860 | |
| # Configuration des logs | |
| LOG_LEVEL=INFO | |
| # Configuration TTS | |
| TTS_CACHE_DIR=/app/tts_cache | |
| TTS_LANGUAGES=fr,en,ar | |
| # Configuration STT | |
| STT_MODEL_SIZE=small | |
| STT_MIN_AUDIO_DURATION=0.75 | |
| # Configuration LLM | |
| LLM_MODEL_NAME=meta-llama/llama-4-scout-17b-16e-instruct | |
| LLM_TEMPERATURE=0 | |
| # Configuration WebSocket | |
| WS_PING_INTERVAL=20 | |
| WS_PING_TIMEOUT=120 | |
| # Configuration Nginx | |
| NGINX_WORKER_PROCESSES=auto | |
| NGINX_WORKER_CONNECTIONS=1024 | |