@the-agenticflow/openflows 0.1.17 → 0.1.18
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/bin/agentflow-bin +0 -0
- package/bin/agentflow-dashboard-bin +0 -0
- package/bin/agentflow-doctor-bin +0 -0
- package/bin/openflows.js +7 -0
- package/package.json +1 -1
package/bin/agentflow-bin
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/agentflow-doctor-bin
CHANGED
|
Binary file
|
package/bin/openflows.js
CHANGED
|
@@ -320,6 +320,13 @@ Documentation: https://openflows.dev
|
|
|
320
320
|
console.log(`[openflows] ✓ Proxy started, PROXY_URL set to ${env.PROXY_URL}`);
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
|
+
|
|
324
|
+
// Set ANTHROPIC_MODEL for Claude CLI when using proxy
|
|
325
|
+
// The proxy will map this to PROXY_TARGET_MODEL
|
|
326
|
+
if (!process.env.ANTHROPIC_MODEL && !process.env.CLAUDE_MODEL) {
|
|
327
|
+
env.ANTHROPIC_MODEL = 'claude-sonnet-4-5';
|
|
328
|
+
console.log(`[openflows] ✓ Set ANTHROPIC_MODEL=claude-sonnet-4-5 for proxy compatibility`);
|
|
329
|
+
}
|
|
323
330
|
} else {
|
|
324
331
|
console.log(`[openflows] Mode: ${reason}`);
|
|
325
332
|
}
|