We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f9c6c commit f018b73Copy full SHA for f018b73
1 file changed
dashboard/src/lib/components/ChatForm.svelte
@@ -84,6 +84,11 @@
84
else if (newModels.length > 0 && previousModelIds.size > 0) {
85
setSelectedChatModel(newModels[0].id);
86
}
87
+ } else {
88
+ // No instances running - clear the selected model
89
+ if (currentModel) {
90
+ setSelectedChatModel('');
91
+ }
92
93
94
// Update previous model IDs for next comparison
0 commit comments