@kody-ade/kody-engine-lite 0.1.73 → 0.1.74

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.
Files changed (2) hide show
  1. package/dist/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/bin/cli.js CHANGED
@@ -3633,7 +3633,7 @@ async function runModelHealthCheck(config) {
3633
3633
  logger.warn(`Skipping model health check \u2014 ${keyName} not set`);
3634
3634
  return;
3635
3635
  }
3636
- const model = config.agent.modelMap.cheap;
3636
+ const model = usesProxy ? "claude-haiku-4-5" : config.agent.modelMap.cheap;
3637
3637
  logger.info(`Model health check (${model} via ${usesProxy ? "LiteLLM" : "Anthropic"})...`);
3638
3638
  const result = await checkModelHealth(baseUrl, apiKey, model);
3639
3639
  if (result.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",