fix:前端模型主键换位modelId

This commit is contained in:
Gsh
2025-07-05 15:59:22 +08:00
parent 23cecb9360
commit d27e625fde
3 changed files with 4 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ async function startSSE(chatContent: string) {
})),
sessionId: route.params?.id !== 'not_login' ? String(route.params?.id) : undefined,
userId: userStore.userInfo?.userId,
model: modelStore.currentModelInfo.modelName ?? '',
model: modelStore.currentModelInfo.modelId ?? '',
})) {
handleDataChunk(chunk.result as AnyObject);
}