feat(tui): show provider next to model

This commit is contained in:
adamdottv 2025-06-18 16:09:49 -05:00
commit 183ca64ef9
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
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)