Spaces:
Sleeping
Sleeping
| """ | |
| deploy/config.py — API 配置常量 | |
| """ | |
| import os | |
| API_URL = os.environ.get( | |
| "BREADBUDDY_API_URL", | |
| "https://chinaestone--breadbuddy-gateway-gateway-serve.modal.run/v1/chat/completions" | |
| ) | |
| MODEL_NAME = os.environ.get("BREADBUDDY_MODEL", "breadbuddy-multimodal") | |
| API_KEY = os.environ.get("BREADBUDDY_API_KEY", "") | |
| DEFAULT_TIMEOUT = int(os.environ.get("BREADBUDDY_TIMEOUT", "300")) | |