usebeeline 0.0.111 → 0.0.113
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.
- package/dist/usebeeline.mjs +2 -2
- package/package.json +1 -1
package/dist/usebeeline.mjs
CHANGED
|
@@ -26386,7 +26386,7 @@ async function collectConnectWizard(prompts = clackPrompts, loadModels = loadCon
|
|
|
26386
26386
|
placeholder: "Type to filter available models\u2026",
|
|
26387
26387
|
maxItems: 12
|
|
26388
26388
|
});
|
|
26389
|
-
return picked.trim();
|
|
26389
|
+
return (picked ?? "").trim();
|
|
26390
26390
|
};
|
|
26391
26391
|
const askEffort = async (catalog2, forHarness, model2, forProvider, forKey) => {
|
|
26392
26392
|
if (!catalog2.effort)
|
|
@@ -26413,7 +26413,7 @@ async function collectConnectWizard(prompts = clackPrompts, loadModels = loadCon
|
|
|
26413
26413
|
})),
|
|
26414
26414
|
...axis.options.some((choice) => choice.id === axis.currentValue) ? { initialValue: axis.currentValue } : {}
|
|
26415
26415
|
});
|
|
26416
|
-
return picked.trim();
|
|
26416
|
+
return (picked ?? "").trim();
|
|
26417
26417
|
};
|
|
26418
26418
|
const probe = async (candidate) => {
|
|
26419
26419
|
try {
|