@kody-ade/kody-engine-lite 0.1.70 → 0.1.71
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/cli.js +2 -1
- package/package.json +1 -1
- package/templates/kody.yml +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -260,7 +260,8 @@ function getLitellmUrl() {
|
|
|
260
260
|
return LITELLM_DEFAULT_URL;
|
|
261
261
|
}
|
|
262
262
|
function providerApiKeyEnvVar(provider) {
|
|
263
|
-
|
|
263
|
+
if (provider === "anthropic") return "ANTHROPIC_API_KEY";
|
|
264
|
+
return "ANTHROPIC_COMPATIBLE_API_KEY";
|
|
264
265
|
}
|
|
265
266
|
function setConfigDir(dir) {
|
|
266
267
|
_configDir = dir;
|
package/package.json
CHANGED
package/templates/kody.yml
CHANGED
|
@@ -250,7 +250,7 @@ jobs:
|
|
|
250
250
|
- name: Run Kody pipeline
|
|
251
251
|
env:
|
|
252
252
|
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
253
|
-
|
|
253
|
+
ANTHROPIC_COMPATIBLE_API_KEY: ${{ secrets.ANTHROPIC_COMPATIBLE_API_KEY }}
|
|
254
254
|
GH_TOKEN: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
|
|
255
255
|
TASK_ID: ${{ github.event.inputs.task_id || needs.parse.outputs.task_id }}
|
|
256
256
|
MODE: ${{ github.event.inputs.mode || needs.parse.outputs.mode || 'full' }}
|