Spaces:
Configuration error
Configuration error
File size: 675 Bytes
88f8604 c3e5765 88f8604 c3e5765 88f8604 c3e5765 88f8604 | 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 | # Database Configuration
POSTGRES_USER=antigravity
POSTGRES_PASSWORD=antigravity123
POSTGRES_DB=antigravity_db
POSTGRES_HOST=localhost
POSTGRES_PORT=5433
DATABASE_URL=postgresql://antigravity:antigravity123@localhost:5433/antigravity_db
# CLaRa Model Configuration
MODEL_NAME=apple/CLaRa-7B-Instruct
MODEL_CACHE_DIR=./model_cache
DEVICE=cuda # or cpu
MAX_CONTEXT_TOKENS=32768
COMPRESSION_RATIO=16
# Storage Configuration
LATENT_TENSOR_DIR=./data/latent_tensors
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
# Streamlit Configuration
STREAMLIT_PORT=8501
# Security
SECRET_KEY=your-secret-key-here-change-in-production
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
|