@vm0/cli 9.122.9 → 9.122.10
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/{chunk-4PF2QGDE.js → chunk-GMBF7S6J.js} +40 -7
- package/{chunk-4PF2QGDE.js.map → chunk-GMBF7S6J.js.map} +1 -1
- package/index.js +9 -9
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/zero.js +2 -2
- package/zero.js.map +1 -1
|
@@ -73642,7 +73642,7 @@ if (DSN) {
|
|
|
73642
73642
|
init2({
|
|
73643
73643
|
dsn: DSN,
|
|
73644
73644
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
73645
|
-
release: "9.122.
|
|
73645
|
+
release: "9.122.10",
|
|
73646
73646
|
sendDefaultPii: false,
|
|
73647
73647
|
tracesSampleRate: 0,
|
|
73648
73648
|
shutdownTimeout: 500,
|
|
@@ -73661,7 +73661,7 @@ if (DSN) {
|
|
|
73661
73661
|
}
|
|
73662
73662
|
});
|
|
73663
73663
|
setContext("cli", {
|
|
73664
|
-
version: "9.122.
|
|
73664
|
+
version: "9.122.10",
|
|
73665
73665
|
command: process.argv.slice(2).join(" ")
|
|
73666
73666
|
});
|
|
73667
73667
|
setContext("runtime", {
|
|
@@ -110216,6 +110216,21 @@ var VM0_MODEL_TO_PROVIDER = {
|
|
|
110216
110216
|
"claude-opus-4-7": {
|
|
110217
110217
|
concreteType: "anthropic-api-key",
|
|
110218
110218
|
vendor: "anthropic"
|
|
110219
|
+
},
|
|
110220
|
+
"kimi-k2.5": {
|
|
110221
|
+
concreteType: "moonshot-api-key",
|
|
110222
|
+
vendor: "moonshot",
|
|
110223
|
+
featureFlag: "vm0KimiModel" /* Vm0KimiModel */
|
|
110224
|
+
},
|
|
110225
|
+
"glm-5.1": {
|
|
110226
|
+
concreteType: "zai-api-key",
|
|
110227
|
+
vendor: "zai",
|
|
110228
|
+
featureFlag: "vm0GlmModel" /* Vm0GlmModel */
|
|
110229
|
+
},
|
|
110230
|
+
"MiniMax-M2.7": {
|
|
110231
|
+
concreteType: "minimax-api-key",
|
|
110232
|
+
vendor: "minimax",
|
|
110233
|
+
featureFlag: "vm0MinimaxModel" /* Vm0MinimaxModel */
|
|
110219
110234
|
}
|
|
110220
110235
|
};
|
|
110221
110236
|
var MODEL_PROVIDER_TYPES = {
|
|
@@ -110317,8 +110332,8 @@ var MODEL_PROVIDER_TYPES = {
|
|
|
110317
110332
|
API_TIMEOUT_MS: "3000000",
|
|
110318
110333
|
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: "1"
|
|
110319
110334
|
},
|
|
110320
|
-
models: ["MiniMax-M2.1"],
|
|
110321
|
-
defaultModel: "MiniMax-M2.
|
|
110335
|
+
models: ["MiniMax-M2.7", "MiniMax-M2.1"],
|
|
110336
|
+
defaultModel: "MiniMax-M2.7"
|
|
110322
110337
|
},
|
|
110323
110338
|
"deepseek-api-key": {
|
|
110324
110339
|
framework: "claude-code",
|
|
@@ -110356,8 +110371,8 @@ var MODEL_PROVIDER_TYPES = {
|
|
|
110356
110371
|
CLAUDE_CODE_SUBAGENT_MODEL: "$model",
|
|
110357
110372
|
API_TIMEOUT_MS: "3000000"
|
|
110358
110373
|
},
|
|
110359
|
-
models: ["glm-5", "glm-4.7", "glm-4.5-air"],
|
|
110360
|
-
defaultModel: "glm-
|
|
110374
|
+
models: ["glm-5.1", "glm-5", "glm-4.7", "glm-4.5-air"],
|
|
110375
|
+
defaultModel: "glm-5.1"
|
|
110361
110376
|
},
|
|
110362
110377
|
"vercel-ai-gateway": {
|
|
110363
110378
|
framework: "claude-code",
|
|
@@ -114826,6 +114841,24 @@ var FEATURE_SWITCHES = {
|
|
|
114826
114841
|
description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
|
|
114827
114842
|
enabled: false
|
|
114828
114843
|
},
|
|
114844
|
+
["vm0KimiModel" /* Vm0KimiModel */]: {
|
|
114845
|
+
maintainer: "ethan@vm0.ai",
|
|
114846
|
+
description: "Expose Moonshot Kimi K2.5 as a selectable model under the VM0 managed provider",
|
|
114847
|
+
enabled: false,
|
|
114848
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114849
|
+
},
|
|
114850
|
+
["vm0GlmModel" /* Vm0GlmModel */]: {
|
|
114851
|
+
maintainer: "ethan@vm0.ai",
|
|
114852
|
+
description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
|
|
114853
|
+
enabled: false,
|
|
114854
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114855
|
+
},
|
|
114856
|
+
["vm0MinimaxModel" /* Vm0MinimaxModel */]: {
|
|
114857
|
+
maintainer: "ethan@vm0.ai",
|
|
114858
|
+
description: "Expose MiniMax M2.7 as a selectable model under the VM0 managed provider",
|
|
114859
|
+
enabled: false,
|
|
114860
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
114861
|
+
},
|
|
114829
114862
|
["slackAgentSwitch" /* SlackAgentSwitch */]: {
|
|
114830
114863
|
maintainer: "yuma@vm0.ai",
|
|
114831
114864
|
description: "Per-user agent override in the org-aware Slack app. When enabled for an org, members can choose which agent replies to their Slack mentions / DMs via `/zero switch` (opens an agent picker modal) or the Switch button on the App Home tab. The help text for `/zero help` also lists the switch subcommand. Selecting an alternate agent persists a row in `slack_user_agent_preferences` so the preference follows the user across every Slack workspace joined under the same org, and subsequent mention / DM replies from a non-default agent carry a `Sent via <agent>` footer so it's clear which agent produced the reply. When gated off, the modal, slash subcommand, App Home button, and help line are hidden AND any existing DB preferences are ignored at read time \u2014 every user falls back to the org default agent with no footer. Staff-only during the rollout window defined by `enabledOrgIdHashes`.",
|
|
@@ -117306,4 +117339,4 @@ undici/lib/web/fetch/body.js:
|
|
|
117306
117339
|
undici/lib/web/websocket/frame.js:
|
|
117307
117340
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
117308
117341
|
*/
|
|
117309
|
-
//# sourceMappingURL=chunk-
|
|
117342
|
+
//# sourceMappingURL=chunk-GMBF7S6J.js.map
|