更新创作模型配置功能

- 在创作页面中新增会话ID和流ID字段,增强执行流的管理能力。
- 在模型配置页面中添加模型类型字段,提升模型管理的灵活性。
- 优化模型选择器,更新API Key配置弹窗,改善用户交互体验。
This commit is contained in:
2026-05-12 11:24:42 +08:00
parent b0e62fb966
commit 87b25dee42
5 changed files with 183 additions and 35 deletions

View File

@@ -222,7 +222,7 @@ const handleSelectModel = (model: ModelItem) => {
if (model.tenantId === 1) {
// 系统模型,需要用户配置 API Key
systemModelToClone.value = model;
apiKeyForm.modelName = `${model.modelName} - 副本`;
apiKeyForm.modelName = model.modelName;
apiKeyForm.apiKey = '';
apiKeyDialogVisible.value = true;
} else {