@vm0/cli 9.124.1 → 9.124.3
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-MV2U6V7H.js → chunk-ISA6IES3.js} +49 -11
- package/{chunk-MV2U6V7H.js.map → chunk-ISA6IES3.js.map} +1 -1
- package/index.js +9 -9
- package/package.json +1 -1
- package/zero.js +53 -34
- 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.124.
|
|
73645
|
+
release: "9.124.3",
|
|
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.124.
|
|
73664
|
+
version: "9.124.3",
|
|
73665
73665
|
command: process.argv.slice(2).join(" ")
|
|
73666
73666
|
});
|
|
73667
73667
|
setContext("runtime", {
|
|
@@ -115702,9 +115702,14 @@ var FEATURE_SWITCHES = {
|
|
|
115702
115702
|
description: "Enable the Voice Chat feature and API endpoints",
|
|
115703
115703
|
enabled: false
|
|
115704
115704
|
},
|
|
115705
|
-
["
|
|
115705
|
+
["audioInput" /* AudioInput */]: {
|
|
115706
115706
|
maintainer: "lancy@vm0.ai",
|
|
115707
|
-
description: "Enable
|
|
115707
|
+
description: "Enable voice input (microphone + STT) in chat \u2014 gates the mic button and the /api/zero/voice-io/stt route",
|
|
115708
|
+
enabled: false
|
|
115709
|
+
},
|
|
115710
|
+
["audioOutput" /* AudioOutput */]: {
|
|
115711
|
+
maintainer: "lancy@vm0.ai",
|
|
115712
|
+
description: "Enable audio output in chat (TTS read-aloud + auto-read) \u2014 gates the volume/read buttons and the /api/zero/voice-io/tts route",
|
|
115708
115713
|
enabled: false
|
|
115709
115714
|
},
|
|
115710
115715
|
["missionControlSidebar" /* MissionControlSidebar */]: {
|
|
@@ -115763,12 +115768,6 @@ var FEATURE_SWITCHES = {
|
|
|
115763
115768
|
description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
|
|
115764
115769
|
enabled: false
|
|
115765
115770
|
},
|
|
115766
|
-
["orgCustomConnectors" /* OrgCustomConnectors */]: {
|
|
115767
|
-
maintainer: "ethan@vm0.ai",
|
|
115768
|
-
description: "Show the org custom connectors surface \u2014 the Custom tab on the Connectors settings page (admin CRUD, member Connect) and the per-agent Custom Connectors section on Agent Authorization. Backend routes remain open; this flag only gates entry points in the UI.",
|
|
115769
|
-
enabled: false,
|
|
115770
|
-
enabledOrgIdHashes: []
|
|
115771
|
-
},
|
|
115772
115771
|
["vm0GlmModel" /* Vm0GlmModel */]: {
|
|
115773
115772
|
maintainer: "ethan@vm0.ai",
|
|
115774
115773
|
description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
|
|
@@ -115784,6 +115783,12 @@ var FEATURE_SWITCHES = {
|
|
|
115784
115783
|
description: "Show the model provider + model picker on the agent profile page and schedule dialog. Allows per-agent and per-schedule model selection, overriding the org default. Staff-only during initial rollout.",
|
|
115785
115784
|
enabled: true,
|
|
115786
115785
|
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
115786
|
+
},
|
|
115787
|
+
["redeemCode" /* RedeemCode */]: {
|
|
115788
|
+
maintainer: "yuma@vm0.ai",
|
|
115789
|
+
description: "Show redeem-code gift icon and dialog in the agent chat page header",
|
|
115790
|
+
enabled: false,
|
|
115791
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
115787
115792
|
}
|
|
115788
115793
|
};
|
|
115789
115794
|
function isFeatureEnabled(key, ctx) {
|
|
@@ -115820,6 +115825,39 @@ init_esm_shims();
|
|
|
115820
115825
|
// ../../packages/core/src/timezone.ts
|
|
115821
115826
|
init_esm_shims();
|
|
115822
115827
|
|
|
115828
|
+
// ../../packages/core/src/model-display-name.ts
|
|
115829
|
+
init_esm_shims();
|
|
115830
|
+
var MODEL_DISPLAY_NAMES = Object.freeze({
|
|
115831
|
+
// Anthropic direct (claude-code-oauth-token, anthropic-api-key, vm0)
|
|
115832
|
+
"claude-sonnet-4-6": "Claude Sonnet 4.6",
|
|
115833
|
+
"claude-opus-4-6": "Claude Opus 4.6",
|
|
115834
|
+
"claude-opus-4-7": "Claude Opus 4.7",
|
|
115835
|
+
"claude-haiku-4-5": "Claude Haiku 4.5",
|
|
115836
|
+
// Anthropic via OpenRouter / Vercel AI Gateway
|
|
115837
|
+
"anthropic/claude-sonnet-4.6": "Claude Sonnet 4.6",
|
|
115838
|
+
"anthropic/claude-opus-4.6": "Claude Opus 4.6",
|
|
115839
|
+
"anthropic/claude-sonnet-4.5": "Claude Sonnet 4.5",
|
|
115840
|
+
"anthropic/claude-opus-4.5": "Claude Opus 4.5",
|
|
115841
|
+
"anthropic/claude-haiku-4.5": "Claude Haiku 4.5",
|
|
115842
|
+
// DeepSeek
|
|
115843
|
+
"deepseek-chat": "DeepSeek Chat",
|
|
115844
|
+
// MiniMax
|
|
115845
|
+
"MiniMax-M2.7": "MiniMax M2.7",
|
|
115846
|
+
"MiniMax-M2.1": "MiniMax M2.1",
|
|
115847
|
+
"minimax/minimax-m2.5": "MiniMax M2.5",
|
|
115848
|
+
// Kimi / Moonshot
|
|
115849
|
+
"kimi-k2.5": "Kimi K2.5",
|
|
115850
|
+
"kimi-k2-thinking": "Kimi K2 Thinking",
|
|
115851
|
+
"kimi-k2-thinking-turbo": "Kimi K2 Thinking Turbo",
|
|
115852
|
+
"moonshotai/kimi-k2.5": "Kimi K2.5",
|
|
115853
|
+
// GLM / ZhipuAI
|
|
115854
|
+
"glm-5.1": "GLM-5.1",
|
|
115855
|
+
"glm-5": "GLM-5",
|
|
115856
|
+
"glm-4.7": "GLM-4.7",
|
|
115857
|
+
"glm-4.5-air": "GLM-4.5 Air",
|
|
115858
|
+
"zai/glm-5-turbo": "GLM-5 Turbo"
|
|
115859
|
+
});
|
|
115860
|
+
|
|
115823
115861
|
// src/lib/command/with-error-handler.ts
|
|
115824
115862
|
init_esm_shims();
|
|
115825
115863
|
|
|
@@ -118254,4 +118292,4 @@ undici/lib/web/fetch/body.js:
|
|
|
118254
118292
|
undici/lib/web/websocket/frame.js:
|
|
118255
118293
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
118256
118294
|
*/
|
|
118257
|
-
//# sourceMappingURL=chunk-
|
|
118295
|
+
//# sourceMappingURL=chunk-ISA6IES3.js.map
|