diff options
| author | adamdottv <[email protected]> | 2025-06-18 16:09:49 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-06-18 16:09:49 -0500 |
| commit | 183ca64ef99deb079b876f45ab0afd426afd6b83 (patch) | |
| tree | f17ceaa758826da75b7b4d19fd928a47839f1834 /packages/tui/internal/components | |
| parent | 8c32cfe82994eafc2d5f16d91423e64496ce5124 (diff) | |
| download | opencode-183ca64ef99deb079b876f45ab0afd426afd6b83.tar.gz opencode-183ca64ef99deb079b876f45ab0afd426afd6b83.zip | |
feat(tui): show provider next to model
Diffstat (limited to 'packages/tui/internal/components')
| -rw-r--r-- | packages/tui/internal/components/chat/editor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index 3c51824c7..804a1b2df 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -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) |
