Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/model-selector-auto-icon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Use the models sparkle icon for Auto models in the model selector.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const ModelPreview: Component<Props> = (props) => {
<Show when={isAuto(model())}>
<Tooltip value={autoLabel()} placement="top">
<span class="model-preview-auto-icon" aria-label={autoLabel()}>
<Icon name="branch" size="small" />
<Icon name="models" size="small" />
</span>
</Tooltip>
</Show>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ export const ModelSelectorBase: Component<ModelSelectorBaseProps> = (props) => {
<Show when={isAuto(model)}>
<Tooltip value={autoLabel(model)} placement="top">
<span class="model-selector-auto-icon" aria-label={autoLabel(model)}>
<Icon name="branch" size="small" />
<Icon name="models" size="small" />
Comment thread
johnnyeric marked this conversation as resolved.
</span>
</Tooltip>
</Show>
Expand Down
Loading