Spaces:
Sleeping
Sleeping
| # Bank Statement Analyzer Configuration | |
| # Copy this file to .env and update with your actual values | |
| # API Keys | |
| GROQ_API_KEY=your_groq_api_key_here | |
| GROQ_BASE_URL=https://api.groq.com/openai/v1 | |
| HUGGINGFACE_API_KEY=your_huggingface_api_key_here | |
| HUGGINGFACE_PROVIDER=novita | |
| # Model Configuration | |
| LLM_MODEL=llama-3.1-8b-instant | |
| # OCR and Processing Settings | |
| Y_THRESHOLD=3.0 | |
| GAP_THRESHOLD=10 | |
| GAP_THRESHOLD_RATIO=0.1 | |
| # File Processing Settings | |
| TEMP_FILE_NAME=temp.pdf | |
| DPI=300 | |
| # spaCy Model Settings | |
| SPACY_MODEL_NAME=en_core_web_sm | |
| # Device Settings | |
| FORCE_CPU=false |