feat(tui): show provider next to model

This commit is contained in:
adamdottv
2025-06-18 16:09:49 -05:00
parent 8c32cfe829
commit 183ca64ef9
3 changed files with 7 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ func (m *editorComponent) View() string {
model := ""
if m.app.Model != nil {
model = base(m.app.Model.Name) + muted(" • /model")
model = muted(m.app.Provider.Name) + base(" "+m.app.Model.Name)
}
space := m.width - 2 - lipgloss.Width(model) - lipgloss.Width(hint)