@mmmbuto/nexuscli 0.6.3 → 0.7.0
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/bin/nexuscli.js +7 -0
- package/frontend/dist/assets/{index-DaG2hvsF.js → index-DuqGKSR-.js} +1702 -1702
- package/frontend/dist/index.html +1 -1
- package/lib/cli/model.js +56 -0
- package/lib/config/manager.js +3 -0
- package/lib/server/routes/config.js +30 -0
- package/lib/server/server.js +2 -0
- package/package.json +1 -1
package/bin/nexuscli.js
CHANGED
|
@@ -22,6 +22,7 @@ const workspacesCommand = require('../lib/cli/workspaces');
|
|
|
22
22
|
const usersCommand = require('../lib/cli/users');
|
|
23
23
|
const uninstallCommand = require('../lib/cli/uninstall');
|
|
24
24
|
const setupTermuxCommand = require('../lib/cli/setup-termux');
|
|
25
|
+
const { modelCommand } = require('../lib/cli/model');
|
|
25
26
|
|
|
26
27
|
program
|
|
27
28
|
.name('nexuscli')
|
|
@@ -62,6 +63,12 @@ program
|
|
|
62
63
|
.description('Manage configuration (get/set/list)')
|
|
63
64
|
.action(configCommand);
|
|
64
65
|
|
|
66
|
+
// nexuscli model
|
|
67
|
+
program
|
|
68
|
+
.command('model [model-id]')
|
|
69
|
+
.description('Set/get default model preference')
|
|
70
|
+
.action(modelCommand);
|
|
71
|
+
|
|
65
72
|
// nexuscli engines
|
|
66
73
|
program
|
|
67
74
|
.command('engines [action]')
|