BreadBuddy / config.py
Estone's picture
deploy: sync with GitHub 3cfa37b — English UI, card style, Rockstone footer
e494200
Raw
History Blame Contribute Delete
392 Bytes
"""
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"))