vipcare 0.3.14 → 0.3.15
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/lib/synthesizer.js +1 -1
- package/package.json +1 -1
package/lib/synthesizer.js
CHANGED
|
@@ -9,8 +9,8 @@ function getBackend() {
|
|
|
9
9
|
const config = loadConfig();
|
|
10
10
|
if (config.ai_backend) return config.ai_backend.toLowerCase();
|
|
11
11
|
|
|
12
|
-
if (process.env.ANTHROPIC_API_KEY || config.anthropic_api_key) return 'anthropic';
|
|
13
12
|
if (checkTool('claude')) return 'claude-cli';
|
|
13
|
+
if (process.env.ANTHROPIC_API_KEY || config.anthropic_api_key) return 'anthropic';
|
|
14
14
|
if (checkTool('gh') && copilotAvailable()) return 'copilot-cli';
|
|
15
15
|
|
|
16
16
|
throw new Error(
|