# ================================ # EcoBot - Configuration # ================================ # Hugging Face (for downloading Whisper model on first run) HF_TOKEN=your_token_here # LM Studio / LLM API LLM_BASE_URL=http://localhost:1234/v1 LLM_API_KEY=not-needed LLM_MODEL=local-model LLM_MAX_TOKENS=200 LLM_TEMPERATURE=0.7 # Whisper STT WHISPER_MODEL=small WHISPER_LANGUAGE=ro WHISPER_DEVICE=cuda WHISPER_COMPUTE_TYPE=float16 #WHISPER_DEVICE=cpu #WHISPER_COMPUTE_TYPE=int8 # Text-to-Speech # TTS_ENGINE: "edge" (online, calitate superioara) sau "piper" (offline) TTS_ENGINE=edge # Voci Edge: ro-RO-EmilNeural (barbat), ro-RO-AlinaNeural (femeie) TTS_VOICE=ro-RO-EmilNeural # Server SERVER_HOST=0.0.0.0 SERVER_PORT=8000