@agents-at-scale/ark 0.1.44 → 0.1.45

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.
@@ -388,7 +388,7 @@ export class StatusChecker {
388
388
  const model = JSON.parse(stdout);
389
389
  defaultModelExists = true;
390
390
  // Extract model details
391
- const available = model.status?.conditions?.find((c) => c.type === 'Available')?.status === 'True';
391
+ const available = model.status?.conditions?.find((c) => c.type === 'ModelAvailable')?.status === 'True';
392
392
  defaultModel = {
393
393
  exists: true,
394
394
  available,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agents-at-scale/ark",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "description": "Ark CLI - Interactive terminal interface for ARK agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",