Spaces:
Sleeping
Sleeping
| # API Configuration | |
| # Add your actual API keys here | |
| GROQ_API_KEY=your_groq_api_key_here | |
| GOOGLE_API_KEY=your_google_api_key_here | |
| # Voice Features Configuration | |
| ENABLE_VOICE_FEATURES=true | |
| TTS_PROVIDER=edge-tts | |
| ASR_PROVIDER=groq | |
| VOICE_LANGUAGE=en-US | |
| DEFAULT_VOICE_SPEED=1.0 | |
| # Murf TTS API Key (if using Murf) | |
| MURF_API_KEY=your_murf_api_key_here | |
| # Other Configuration | |
| USE_HYBRID_LLM=true | |
| FAST_LLM_PROVIDER=groq | |
| COMPLEX_LLM_PROVIDER=gemini | |
| GROQ_MODEL=llama-3.1-8b-instant | |
| GEMINI_MODEL=gemini-1.5-pro-latest | |
| GEMINI_TEMPERATURE=0.7 | |
| # Database Configuration | |
| LANCEDB_PATH=./lancedb_data | |
| EMBEDDING_MODEL_NAME=nomic-ai/nomic-bert-2048 | |
| CHUNK_SIZE=1000 | |
| CHUNK_OVERLAP=200 | |
| # CORS Configuration | |
| ALLOWED_ORIGINS=* |