diff --git a/cortex-js/package.json b/cortex-js/package.json index d9dc194be..76207f3e8 100644 --- a/cortex-js/package.json +++ b/cortex-js/package.json @@ -38,7 +38,7 @@ "preuninstall": "node ./uninstall.js" }, "dependencies": { - "@cortexso/cortex.js": "^0.1.3", + "@cortexso/cortex.js": "^0.1.4", "@huggingface/gguf": "^0.1.5", "@huggingface/hub": "^0.15.1", "@nestjs/axios": "^3.0.2", diff --git a/cortex-js/src/infrastructure/commanders/models/model-list.command.ts b/cortex-js/src/infrastructure/commanders/models/model-list.command.ts index 050b0e1e1..4a86f5e49 100644 --- a/cortex-js/src/infrastructure/commanders/models/model-list.command.ts +++ b/cortex-js/src/infrastructure/commanders/models/model-list.command.ts @@ -29,6 +29,7 @@ export class ModelListCommand extends BaseCommand { models.map((e) => ({ id: e.id, engine: e.engine, + version: e.version, })), ) : console.log(models);