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
2 changes: 1 addition & 1 deletion docs/features/command-palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ This is usually faster than opening Settings and browsing manually.
Default bindings:

- `Alt+1` → `Claude Opus 4.7`
- `Alt+2` → `GPT-5.4`
- `Alt+2` → `GPT-5.5`
- `Alt+3` → `Stave Auto`

### Work Mostly From The Keyboard
Expand Down
2 changes: 1 addition & 1 deletion src/lib/providers/model-shortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const MODEL_SHORTCUT_SLOT_LABELS = [

export const DEFAULT_MODEL_SHORTCUT_KEYS = [
"claude-code:claude-opus-4-7",
"codex:gpt-5.4",
"codex:gpt-5.5",
"stave:stave-auto",
"",
"",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/task-presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export const DEFAULT_TASK_PRESETS: readonly TaskPreset[] = [
model: DEFAULT_CLAUDE_OPUS_MODEL,
},
{
id: "default-gpt-5-4-task",
label: "GPT-5.4",
id: "default-gpt-5-5-task",
label: "GPT-5.5",
kind: "task",
provider: "codex",
model: "gpt-5.4",
model: "gpt-5.5",
},
{
id: "default-stave-auto-task",
Expand Down
6 changes: 3 additions & 3 deletions tests/model-selector-utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ describe("model selector utils", () => {
providerId: "claude-code",
}),
expect.objectContaining({
key: "codex:gpt-5.4",
model: "gpt-5.4",
key: "codex:gpt-5.5",
model: "gpt-5.5",
providerId: "codex",
}),
]),
Expand Down Expand Up @@ -87,7 +87,7 @@ describe("model selector utils", () => {
),
).toEqual([
"claude-code:claude-opus-4-7",
"codex:gpt-5.4",
"codex:gpt-5.5",
"stave:stave-auto",
]);
});
Expand Down
2 changes: 1 addition & 1 deletion tests/model-shortcuts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe("model shortcuts", () => {
available: true,
},
{
key: "codex:gpt-5.4",
key: "codex:gpt-5.5",
available: false,
},
];
Expand Down
4 changes: 2 additions & 2 deletions tests/task-presets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("task preset defaults", () => {
expect(presets).toHaveLength(5);
expect(presets.map((preset) => preset.id)).toEqual([
"default-claude-opus-4-7-task",
"default-gpt-5-4-task",
"default-gpt-5-5-task",
"default-stave-auto-task",
"default-claude-cli-session",
"default-codex-cli-session",
Expand All @@ -34,7 +34,7 @@ describe("task preset defaults", () => {
label: "Extra",
kind: "task",
provider: "codex",
model: "gpt-5.4",
model: "gpt-5.5",
});
expect(DEFAULT_TASK_PRESETS).toHaveLength(5);
});
Expand Down
Loading