更新DeepSeek模型配置,新增DeepSeek-V3和DeepSeek推理模型,优化API调用逻辑,支持多模态模型的图像分析,改进前端按钮显示逻辑,提升用户体验

This commit is contained in:
Zylan
2025-03-22 22:52:15 +08:00
parent 5a1ca6761c
commit 5cac831156
5 changed files with 398 additions and 109 deletions

View File

@@ -434,6 +434,11 @@ class SettingsManager {
this.updateUIBasedOnModelType();
this.updateModelVersionDisplay(e.target.value);
this.saveSettings();
// 通知应用更新图像操作按钮
if (window.app && typeof window.app.updateImageActionButtons === 'function') {
window.app.updateImageActionButtons();
}
});
this.temperatureInput.addEventListener('input', (e) => {