Advocate_Life_Style / app_config.py
DocUA's picture
Convert all prompts and code to English
d213aa7
raw
history blame contribute delete
629 Bytes
"""
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
}