File size: 748 Bytes
b6ac3ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Hugging Face Spaces Configuration
# This file contains environment-specific settings for the HF Spaces deployment
# Modal configuration
MODAL_TOKEN_ID = "" # Set in HF Spaces secrets
MODAL_TOKEN_SECRET = "" # Set in HF Spaces secrets
# App configuration
APP_NAME = "Agentic Ecosystem Simulator"
APP_VERSION = "1.0.0-hf"
HF_SPACES_COMPATIBLE = True
# Feature flags for HF Spaces
ENABLE_AUDIO = False # Disabled - requires system dependencies
ENABLE_VISUALIZATION = False # Disabled - requires GPU resources
ENABLE_TTS = False # Disabled - requires pyttsx3
# UI Configuration
DEFAULT_ENVIRONMENT = "temperate meadow in spring morning with wildflowers and gentle breeze"
SHOW_MODAL_STATUS = True
SHOW_EXAMPLES = True
|