@thyn-ai/sqai-cli 0.1.9 → 0.1.11

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/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -159,7 +159,7 @@ async function doctorCommand(flags) {
159
159
  const health = await runtime.health();
160
160
  runtimeAvailable = health.runtime_available;
161
161
  if (runtimeAvailable) {
162
- runtimeDetail = `available \u2014 engine ${health.engine}, ${health.module_count} modules`;
162
+ runtimeDetail = `available \u2014 runtime ${health.engine}, ${health.module_count} modules`;
163
163
  if (flags.parity) {
164
164
  liveModules = (await runtime.listModules()).map((descriptor) => descriptor.name);
165
165
  }
@@ -261,7 +261,7 @@ function buildProvisioner() {
261
261
  }
262
262
  function printStatusHuman(status) {
263
263
  if (status.runtime_available) {
264
- line(`${OK} runtime: available \u2014 engine ${status.engine}, ${status.module_count} modules`);
264
+ line(`${OK} runtime: available \u2014 runtime ${status.engine}, ${status.module_count} modules`);
265
265
  } else {
266
266
  line(`${SKIP} runtime: unavailable`);
267
267
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thyn-ai/sqai-cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "SQAI (Structured Query AI) command-line interface — doctor, runtime provisioning, and contract inspection.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "algenta-sdk": "1.0.6",
21
- "@thyn-ai/sqai": "^0.1.9"
21
+ "@thyn-ai/sqai": "^0.1.11"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^22.10.2",