""" Configuration for HuggingFace Spaces deployment """ # HuggingFace Spaces metadata SPACE_CONFIG = { "title": "🏥 Lifestyle Journey MVP", "emoji": "🏥", "colorFrom": "blue", "colorTo": "green", "sdk": "gradio", "sdk_version": "4.0.0", "app_file": "app.py", "pinned": False, "license": "mit" } # Gradio configuration GRADIO_CONFIG = { "theme": "soft", "show_api": False, "show_error": True, "height": 600, "title": "Lifestyle Journey MVP" } # API configuration API_CONFIG = { "gemini_model": "gemini-2.5-flash", "temperature": 0.3, "max_tokens": 2048 }