feat: 将默认 LLM 配置从 OpenAI 切换为 DeepSeek (deepseek-v4-pro)

This commit is contained in:
2026-06-20 22:03:09 +08:00
parent 9c843b79ba
commit 292588ef23
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ func GetLLMConfig(db *sql.DB, userID int64) (LLMConfig, error) {
}
if config.Model == "" {
config.Model = "gpt-4o"
config.Model = "deepseek-v4-pro"
}
return config, nil