summaryrefslogtreecommitdiff
path: root/popups.go
diff options
context:
space:
mode:
Diffstat (limited to 'popups.go')
-rw-r--r--popups.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/popups.go b/popups.go
index e5c46a1..9fdc1fd 100644
--- a/popups.go
+++ b/popups.go
@@ -62,7 +62,7 @@ func showModelSelectionPopup() {
}
modelListWidget.SetSelectedFunc(func(index int, mainText string, secondaryText string, shortcut rune) {
// Strip "(loaded)" suffix if present for local llama.cpp models
- modelName := strings.TrimSuffix(mainText, " (loaded)")
+ modelName := strings.TrimPrefix(mainText, "(loaded) ")
// Update the model in both chatBody and config
chatBody.Model = modelName
cfg.CurrentModel = chatBody.Model