Spaces:
Sleeping
Sleeping
File size: 686 Bytes
f74cf62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # 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
|