This commit is contained in:
Timothy Jaeryang Baek 2025-06-16 11:44:07 +04:00
parent a47e3b429e
commit 8892c14984

View File

@ -1454,6 +1454,10 @@
? [atSelectedModel.id]
: selectedModels;
if (selectedModelIds.filter((id) => id !== '').length === 0) {
return;
}
// Create response messages for each selected model
for (const [_modelIdx, modelId] of selectedModelIds.entries()) {
const model = $models.filter((m) => m.id === modelId).at(0);