finvoice / .env.template
ShaunMendes001's picture
Deploy FinVoice: Complete multilingual finance assistant with voice processing, RAG, and portfolio optimization
0122ddd
raw
history blame contribute delete
767 Bytes
# Environment Variables for FinVoice Deployment
# Copy this file to .env and fill in your actual API keys
# LLM API Keys
GEMINI_API_KEY=your-gemini-api-key-here
GROQ_API_KEY=your-groq-api-key-here
# Hugging Face Token (for model access)
HF_TOKEN=your-hugging-face-token-here
# Service URLs (for local deployment)
FASTAPI2_URL=http://localhost:8001
# Optional: OpenAI API Key (if using OpenAI models)
OPENAI_API_KEY=your-openai-api-key-here
# Optional: Alpha Vantage API Key (for financial data)
ALPHA_VANTAGE_API_KEY=your-alpha-vantage-key-here
# Database Configuration
DATABASE_URL=sqlite:///./financial_data.db
# Audio Processing Settings
MAX_AUDIO_SIZE_MB=10
SUPPORTED_AUDIO_FORMATS=wav,mp3,m4a,flac
# Model Settings
DEVICE=auto
BATCH_SIZE=1
MAX_LENGTH=512