From 8547cf8649768f82ef5f47de5da168b975892ebb Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 30 Jun 2025 08:44:12 -0400 Subject: [PATCH] chore: adjust wording of small/large model labels --- internal/tui/components/dialogs/models/models.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/tui/components/dialogs/models/models.go b/internal/tui/components/dialogs/models/models.go index c2c65e5d90c1d9bf9bfca708692f0f288c27a594..b5ca9fe79c51e8534dade154af1f0be553d47d56 100644 --- a/internal/tui/components/dialogs/models/models.go +++ b/internal/tui/components/dialogs/models/models.go @@ -204,13 +204,13 @@ func (m *modelDialogCmp) ID() dialogs.DialogID { func (m *modelDialogCmp) modelTypeRadio() string { t := styles.CurrentTheme() - choices := []string{"Large", "Small"} + choices := []string{"Large Task", "Small Task"} iconSelected := "◉" iconUnselected := "○" if m.modelType == LargeModelType { - return t.S().Base.Foreground(t.FgHalfMuted).Render(iconSelected + " " + choices[0] + " " + iconUnselected + " " + choices[1]) + return t.S().Base.Foreground(t.FgHalfMuted).Render(iconSelected + " " + choices[0] + " " + iconUnselected + " " + choices[1]) } - return t.S().Base.Foreground(t.FgHalfMuted).Render(iconUnselected + " " + choices[0] + " " + iconSelected + " " + choices[1]) + return t.S().Base.Foreground(t.FgHalfMuted).Render(iconUnselected + " " + choices[0] + " " + iconSelected + " " + choices[1]) } func (m *modelDialogCmp) SetModelType(modelType int) tea.Cmd {