@vm0/cli 9.127.0 → 9.127.1
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.
|
@@ -73642,7 +73642,7 @@ if (DSN) {
|
|
|
73642
73642
|
init2({
|
|
73643
73643
|
dsn: DSN,
|
|
73644
73644
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
73645
|
-
release: "9.127.
|
|
73645
|
+
release: "9.127.1",
|
|
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.127.
|
|
73664
|
+
version: "9.127.1",
|
|
73665
73665
|
command: process.argv.slice(2).join(" ")
|
|
73666
73666
|
});
|
|
73667
73667
|
setContext("runtime", {
|
|
@@ -111110,8 +111110,7 @@ var VM0_MODEL_TO_PROVIDER = {
|
|
|
111110
111110
|
"glm-5.1": {
|
|
111111
111111
|
concreteType: "openrouter-api-key",
|
|
111112
111112
|
vendor: "openrouter",
|
|
111113
|
-
apiModel: "z-ai/glm-5.1"
|
|
111114
|
-
featureFlag: "vm0GlmModel" /* Vm0GlmModel */
|
|
111113
|
+
apiModel: "z-ai/glm-5.1"
|
|
111115
111114
|
},
|
|
111116
111115
|
"claude-haiku-4-5": {
|
|
111117
111116
|
concreteType: "anthropic-api-key",
|
|
@@ -115512,9 +115511,12 @@ var voiceChatCandidateSessionSchema = external_exports.object({
|
|
|
115512
115511
|
agentId: external_exports.uuid().nullable(),
|
|
115513
115512
|
mode: external_exports.literal("chat"),
|
|
115514
115513
|
status: voiceChatCandidateSessionStatusSchema,
|
|
115515
|
-
|
|
115516
|
-
|
|
115517
|
-
|
|
115514
|
+
conversationSummary: external_exports.string().nullable(),
|
|
115515
|
+
workingTasksSummary: external_exports.string().nullable(),
|
|
115516
|
+
finishedTasksSummary: external_exports.string().nullable(),
|
|
115517
|
+
summarySeq: external_exports.number().int(),
|
|
115518
|
+
summaryVersion: external_exports.number().int(),
|
|
115519
|
+
lastSummaryAt: external_exports.string().nullable(),
|
|
115518
115520
|
createdAt: external_exports.string(),
|
|
115519
115521
|
lastHeartbeatAt: external_exports.string(),
|
|
115520
115522
|
endedAt: external_exports.string().nullable()
|
|
@@ -115529,6 +115531,11 @@ var voiceChatCandidateItemSchema = external_exports.object({
|
|
|
115529
115531
|
realtimeItemId: external_exports.string().nullable(),
|
|
115530
115532
|
createdAt: external_exports.string()
|
|
115531
115533
|
});
|
|
115534
|
+
var voiceChatCandidateTaskResultEntrySchema = external_exports.object({
|
|
115535
|
+
type: external_exports.literal("assistant"),
|
|
115536
|
+
content: external_exports.string(),
|
|
115537
|
+
at: external_exports.string()
|
|
115538
|
+
});
|
|
115532
115539
|
var voiceChatCandidateTaskSchema = external_exports.object({
|
|
115533
115540
|
id: external_exports.uuid(),
|
|
115534
115541
|
sessionId: external_exports.uuid(),
|
|
@@ -115536,7 +115543,7 @@ var voiceChatCandidateTaskSchema = external_exports.object({
|
|
|
115536
115543
|
callId: external_exports.string(),
|
|
115537
115544
|
prompt: external_exports.string(),
|
|
115538
115545
|
status: voiceChatCandidateTaskStatusSchema,
|
|
115539
|
-
|
|
115546
|
+
assistantMessages: external_exports.array(voiceChatCandidateTaskResultEntrySchema),
|
|
115540
115547
|
error: external_exports.string().nullable(),
|
|
115541
115548
|
createdAt: external_exports.string(),
|
|
115542
115549
|
startedAt: external_exports.string().nullable(),
|
|
@@ -115567,7 +115574,13 @@ var zeroVoiceChatCandidateContract = c52.router({
|
|
|
115567
115574
|
headers: authHeadersSchema,
|
|
115568
115575
|
body: createSessionBodySchema,
|
|
115569
115576
|
responses: {
|
|
115570
|
-
200: external_exports.object({
|
|
115577
|
+
200: external_exports.object({
|
|
115578
|
+
session: voiceChatCandidateSessionSchema,
|
|
115579
|
+
recentTaskLogs: external_exports.string(),
|
|
115580
|
+
finishedTasksFullText: external_exports.string(),
|
|
115581
|
+
talkerInstructions: external_exports.string(),
|
|
115582
|
+
talkerInstructionTokens: external_exports.number().int().nonnegative()
|
|
115583
|
+
}),
|
|
115571
115584
|
400: apiErrorSchema,
|
|
115572
115585
|
401: apiErrorSchema,
|
|
115573
115586
|
403: apiErrorSchema
|
|
@@ -115580,11 +115593,50 @@ var zeroVoiceChatCandidateContract = c52.router({
|
|
|
115580
115593
|
headers: authHeadersSchema,
|
|
115581
115594
|
pathParams: external_exports.object({ id: external_exports.uuid() }),
|
|
115582
115595
|
responses: {
|
|
115583
|
-
200: external_exports.object({
|
|
115596
|
+
200: external_exports.object({
|
|
115597
|
+
session: voiceChatCandidateSessionSchema,
|
|
115598
|
+
recentTaskLogs: external_exports.string(),
|
|
115599
|
+
finishedTasksFullText: external_exports.string(),
|
|
115600
|
+
talkerInstructions: external_exports.string(),
|
|
115601
|
+
talkerInstructionTokens: external_exports.number().int().nonnegative()
|
|
115602
|
+
}),
|
|
115603
|
+
401: apiErrorSchema,
|
|
115604
|
+
404: apiErrorSchema
|
|
115605
|
+
},
|
|
115606
|
+
summary: "Get a voice-chat-candidate session with recent task logs"
|
|
115607
|
+
},
|
|
115608
|
+
listSessions: {
|
|
115609
|
+
method: "GET",
|
|
115610
|
+
path: "/api/zero/voice-chat-candidate",
|
|
115611
|
+
headers: authHeadersSchema,
|
|
115612
|
+
responses: {
|
|
115613
|
+
200: external_exports.object({
|
|
115614
|
+
sessions: external_exports.array(voiceChatCandidateSessionSchema)
|
|
115615
|
+
}),
|
|
115616
|
+
401: apiErrorSchema,
|
|
115617
|
+
403: apiErrorSchema
|
|
115618
|
+
},
|
|
115619
|
+
summary: "List voice-chat-candidate sessions for the current user"
|
|
115620
|
+
},
|
|
115621
|
+
reenterSession: {
|
|
115622
|
+
method: "POST",
|
|
115623
|
+
path: "/api/zero/voice-chat-candidate/:id/reenter",
|
|
115624
|
+
headers: authHeadersSchema,
|
|
115625
|
+
pathParams: external_exports.object({ id: external_exports.uuid() }),
|
|
115626
|
+
body: external_exports.object({}),
|
|
115627
|
+
responses: {
|
|
115628
|
+
200: external_exports.object({
|
|
115629
|
+
session: voiceChatCandidateSessionSchema,
|
|
115630
|
+
recentTaskLogs: external_exports.string(),
|
|
115631
|
+
finishedTasksFullText: external_exports.string(),
|
|
115632
|
+
talkerInstructions: external_exports.string(),
|
|
115633
|
+
talkerInstructionTokens: external_exports.number().int().nonnegative()
|
|
115634
|
+
}),
|
|
115584
115635
|
401: apiErrorSchema,
|
|
115636
|
+
403: apiErrorSchema,
|
|
115585
115637
|
404: apiErrorSchema
|
|
115586
115638
|
},
|
|
115587
|
-
summary: "
|
|
115639
|
+
summary: "Reactivate and load a voice-chat-candidate session, re-computing talker instructions"
|
|
115588
115640
|
},
|
|
115589
115641
|
endSession: {
|
|
115590
115642
|
method: "POST",
|
|
@@ -115653,6 +115705,18 @@ var zeroVoiceChatCandidateContract = c52.router({
|
|
|
115653
115705
|
},
|
|
115654
115706
|
summary: "Create a task from the Talker's createTask tool call"
|
|
115655
115707
|
},
|
|
115708
|
+
listTasks: {
|
|
115709
|
+
method: "GET",
|
|
115710
|
+
path: "/api/zero/voice-chat-candidate/:id/tasks",
|
|
115711
|
+
headers: authHeadersSchema,
|
|
115712
|
+
pathParams: external_exports.object({ id: external_exports.uuid() }),
|
|
115713
|
+
responses: {
|
|
115714
|
+
200: external_exports.object({ tasks: external_exports.array(voiceChatCandidateTaskSchema) }),
|
|
115715
|
+
401: apiErrorSchema,
|
|
115716
|
+
404: apiErrorSchema
|
|
115717
|
+
},
|
|
115718
|
+
summary: "List voice-chat-candidate tasks for a session"
|
|
115719
|
+
},
|
|
115656
115720
|
token: {
|
|
115657
115721
|
method: "POST",
|
|
115658
115722
|
path: "/api/zero/voice-chat-candidate/token",
|
|
@@ -116271,11 +116335,6 @@ var FEATURE_SWITCHES = {
|
|
|
116271
116335
|
description: "Enable the Zoom connector (OAuth 2.0) for meetings, past participants, and cloud recordings access",
|
|
116272
116336
|
enabled: false
|
|
116273
116337
|
},
|
|
116274
|
-
["vm0GlmModel" /* Vm0GlmModel */]: {
|
|
116275
|
-
maintainer: "ethan@vm0.ai",
|
|
116276
|
-
description: "Expose Z.AI GLM-5.1 as a selectable model under the VM0 managed provider",
|
|
116277
|
-
enabled: false
|
|
116278
|
-
},
|
|
116279
116338
|
["apiKeys" /* ApiKeys */]: {
|
|
116280
116339
|
maintainer: "ethan@vm0.ai",
|
|
116281
116340
|
description: "Gate the custom /settings/api-keys UI for issuing personal access tokens used by the /api/v1 public surface. When disabled, the settings page redirects to / and the sidebar menu item is hidden. The backend /api/v1 verification does NOT consult this flag \u2014 previously issued PATs continue to work.",
|
|
@@ -118907,4 +118966,4 @@ undici/lib/web/fetch/body.js:
|
|
|
118907
118966
|
undici/lib/web/websocket/frame.js:
|
|
118908
118967
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
118909
118968
|
*/
|
|
118910
|
-
//# sourceMappingURL=chunk-
|
|
118969
|
+
//# sourceMappingURL=chunk-RRJZUGHK.js.map
|