llm-data-analyzer / .env.example
Arif
Initial commit
2b6c2ca
raw
history blame contribute delete
561 Bytes
# Backend Configuration
FASTAPI_ENV=development
API_HOST=0.0.0.0
API_PORT=8000
LOG_LEVEL=INFO
# LLM Configuration (will be filled in Phase 2)
LLM_MODEL_NAME=mlx-community/Llama-2-13B-4bit
LLM_MAX_TOKENS=1024
LLM_TEMPERATURE=0.7
LLM_DEVICE=auto
# File Upload
MAX_FILE_SIZE=1048576
UPLOAD_TIMEOUT=30
# CORS
CORS_ORIGINS=["http://localhost:8501","http://web:8501"]
# Frontend Configuration
STREAMLIT_SERVER_PORT=8501
STREAMLIT_SERVER_HEADLESS=true
API_BASE_URL=http://localhost:8000
API_BASE_URL_DOCKER=http://api:8000
SESSION_TIMEOUT=3600
MAX_CHAT_HISTORY=50