@rely-ai/caliber 1.22.1-dev.1773778672 → 1.22.1-dev.1773780585
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 +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -116,7 +116,7 @@ function getFastModel() {
|
|
|
116
116
|
if (process.env.CALIBER_FAST_MODEL) return process.env.CALIBER_FAST_MODEL;
|
|
117
117
|
const config = loadConfig();
|
|
118
118
|
const provider = config?.provider;
|
|
119
|
-
if (process.env.ANTHROPIC_SMALL_FAST_MODEL && (!provider || provider === "anthropic" || provider === "vertex")) {
|
|
119
|
+
if (process.env.ANTHROPIC_SMALL_FAST_MODEL && (!provider || provider === "anthropic" || provider === "vertex" || provider === "claude-cli")) {
|
|
120
120
|
return process.env.ANTHROPIC_SMALL_FAST_MODEL;
|
|
121
121
|
}
|
|
122
122
|
if (config?.fastModel) return config.fastModel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "1.22.1-dev.
|
|
3
|
+
"version": "1.22.1-dev.1773780585",
|
|
4
4
|
"description": "Analyze your codebase and generate optimized AI agent configs (CLAUDE.md, .cursorrules, skills) — no API key needed",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|