Spaces:
Sleeping
Sleeping
| # VREyeSAM Configuration Example | |
| # Copy to .env and fill in your values | |
| # DO NOT commit .env to git! | |
| # Model Configuration | |
| MODEL_DEVICE=cuda | |
| MODEL_INFERENCE_TIMEOUT=300 | |
| # Hugging Face Configuration (Optional) | |
| # Only needed for downloading from private repos | |
| HF_TOKEN=your_huggingface_token_here | |
| HF_USER=your_username | |
| # Streamlit Configuration | |
| STREAMLIT_SERVER_PORT=7860 | |
| STREAMLIT_SERVER_ADDRESS=0.0.0.0 | |
| STREAMLIT_SERVER_HEADLESS=true | |
| STREAMLIT_BROWSER_GATHER_USAGE_STATS=false | |
| STREAMLIT_SERVER_MAX_UPLOAD_SIZE=500 | |
| # Application Configuration | |
| APP_TITLE=VREyeSAM | |
| LOG_LEVEL=INFO | |
| ENABLE_DEBUG=false | |
| # Security | |
| ALLOW_FILE_DOWNLOADS=true | |
| ENABLE_METRICS=false | |
| ANONYMOUS_USAGE_ONLY=true | |