# Ollama Configuration OLLAMA_HOST=0.0.0.0 OLLAMA_PORT=11436 # Streamlit Configuration STREAMLIT_SERVER_PORT=8501 STREAMLIT_SERVER_ADDRESS=0.0.0.0 STREAMLIT_SERVER_HEADLESS=true STREAMLIT_BROWSER_GATHER_USAGE_STATS=false # Application Settings APP_DEBUG=false APP_ENV=development APP_SECRET_KEY=your-secret-key-here # Model Configuration DEFAULT_MODEL=mistral:7b-instruct MODEL_TEMPERATURE=0.7 MAX_TOKENS=2000 # API Configuration (if needed) # API_KEY=your-api-key-here # API_BASE_URL=http://localhost:11434 # Database Configuration (if needed) # DB_HOST=db # DB_PORT=5432 # DB_NAME=llm_demo # DB_USER=postgres # DB_PASSWORD=your-db-password # CORS Configuration (if needed) # CORS_ORIGINS=http://localhost:3000,http://localhost:8501