feat(model): add /model picker

This commit is contained in:
Peter Steinberger
2026-01-12 06:02:39 +00:00
parent 121c9bd6f3
commit 2da2057a37
10 changed files with 434 additions and 136 deletions

View File

@@ -48,10 +48,7 @@ export async function promptAuthChoiceGrouped(params: {
const methodSelection = (await params.prompter.select({
message: `${group.label} auth method`,
options: [
...group.options,
{ value: BACK_VALUE, label: "Back" },
],
options: [...group.options, { value: BACK_VALUE, label: "Back" }],
})) as string;
if (methodSelection === BACK_VALUE) {