Ecobot_Scoala_Verde/backend/.env.example
Stefan Caramizoiu d7a7d2cafd Initial commit
2026-04-01 11:14:26 +03:00

33 lines
727 B
Text

# ================================
# 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