@rely-ai/caliber 0.7.0 → 0.7.1
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 +3 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -3843,8 +3843,9 @@ async function initCommand(options) {
|
|
|
3843
3843
|
console.log(chalk4.green(" \u2713 Provider saved. Continuing with init.\n"));
|
|
3844
3844
|
}
|
|
3845
3845
|
const displayModel = config.model === "default" && config.provider === "claude-cli" ? process.env.ANTHROPIC_MODEL || "default (inherited from Claude Code)" : config.model;
|
|
3846
|
-
|
|
3847
|
-
`
|
|
3846
|
+
const fastModel = process.env.ANTHROPIC_SMALL_FAST_MODEL;
|
|
3847
|
+
const modelLine = fastModel ? ` Provider: ${config.provider} | Model: ${displayModel} | Scan: ${fastModel}` : ` Provider: ${config.provider} | Model: ${displayModel}`;
|
|
3848
|
+
console.log(chalk4.dim(modelLine + "\n"));
|
|
3848
3849
|
console.log(title.bold(" Step 2/4 \u2014 Scan project\n"));
|
|
3849
3850
|
console.log(chalk4.dim(" Detecting languages, dependencies, file structure, and existing configs.\n"));
|
|
3850
3851
|
const spinner = ora("Analyzing project...").start();
|
package/package.json
CHANGED