Spaces:
Running
Running
File size: 629 Bytes
3abb514 d213aa7 3abb514 d213aa7 3abb514 d213aa7 3abb514 d213aa7 3abb514 |
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 31 32 |
"""
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
} |