GPT-5 Support + Better Logs (#3277)

This commit is contained in:
Shuchang Zheng
2025-08-22 13:02:15 -07:00
committed by GitHub
parent 9d307a2933
commit 5055daad00
3 changed files with 49 additions and 4 deletions

View File

@@ -273,6 +273,11 @@ class Settings(BaseSettings):
GROQ_MODEL: str | None = None
GROQ_API_BASE: str = "https://api.groq.com/openai/v1"
# MOONSHOT AI
ENABLE_MOONSHOT: bool = False
MOONSHOT_API_KEY: str | None = None
MOONSHOT_API_BASE: str = "https://api.moonshot.cn/v1"
# TOTP Settings
TOTP_LIFESPAN_MINUTES: int = 10
VERIFICATION_CODE_INITIAL_WAIT_TIME_SECS: int = 40