@rely-ai/caliber 1.3.1 → 1.3.2
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/bin.js +7 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -2563,7 +2563,7 @@ function promptInput(question) {
|
|
|
2563
2563
|
});
|
|
2564
2564
|
}
|
|
2565
2565
|
var PROVIDER_CHOICES = [
|
|
2566
|
-
{ name: "Claude Code
|
|
2566
|
+
{ name: "Claude Code \u2014 Use my Claude Code subscription", value: "claude-cli" },
|
|
2567
2567
|
{ name: "Cursor (use my Cursor subscription \u2014 no API key)", value: "cursor" },
|
|
2568
2568
|
{ name: "Anthropic (Claude) \u2014 API key from console.anthropic.com", value: "anthropic" },
|
|
2569
2569
|
{ name: "Google Vertex AI (Claude)", value: "vertex" },
|
|
@@ -6565,9 +6565,14 @@ import chalk13 from "chalk";
|
|
|
6565
6565
|
async function configCommand() {
|
|
6566
6566
|
const existing = loadConfig();
|
|
6567
6567
|
if (existing) {
|
|
6568
|
+
const displayModel = existing.model === "default" && existing.provider === "claude-cli" ? process.env.ANTHROPIC_MODEL || "default (inherited from Claude Code)" : existing.model;
|
|
6569
|
+
const fastModel = getFastModel();
|
|
6568
6570
|
console.log(chalk13.bold("\nCurrent Configuration\n"));
|
|
6569
6571
|
console.log(` Provider: ${chalk13.cyan(existing.provider)}`);
|
|
6570
|
-
console.log(` Model: ${chalk13.cyan(
|
|
6572
|
+
console.log(` Model: ${chalk13.cyan(displayModel)}`);
|
|
6573
|
+
if (fastModel) {
|
|
6574
|
+
console.log(` Scan: ${chalk13.cyan(fastModel)}`);
|
|
6575
|
+
}
|
|
6571
6576
|
if (existing.apiKey) {
|
|
6572
6577
|
const masked = existing.apiKey.slice(0, 8) + "..." + existing.apiKey.slice(-4);
|
|
6573
6578
|
console.log(` API Key: ${chalk13.dim(masked)}`);
|
package/package.json
CHANGED