gearbox-code 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.mjs +1 -2
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -146746,9 +146746,8 @@ function App2({ selector: initialSelector, runner, fullscreen = false, resumeId
146746
146746
  onEvent({ type: "error", message: "Gearbox docs aren't bundled with this install — can't answer from them." });
146747
146747
  return { messages, usage: { inputTokens: 0, outputTokens: 0 } };
146748
146748
  }
146749
- const choice3 = sel.select({ prompt, kind: "search" });
146749
+ const choice3 = new RoutingSelector().select({ prompt, kind: "search" });
146750
146750
  routedRef.current = { model: choice3.model, reason: choice3.reason };
146751
- setLastPick({ model: choice3.model, reason: choice3.reason });
146752
146751
  onEvent({ type: "model-pick", model: choice3.model.label, provider: choice3.model.provider, reason: choice3.reason });
146753
146752
  const acct = accountResolver.pick(choice3.model.provider);
146754
146753
  const creds2 = acct ? await resolveCreds(acct) : undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gearbox-code",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "description": "A beautiful multi-provider coding harness for the terminal. (Intelligent model routing lands on top of this soon.)",
5
5
  "type": "module",
6
6
  "license": "MIT",