@autohq/cli 0.1.373 → 0.1.374
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/dist/agent-bridge.js +8 -2
- package/dist/index.js +9 -3
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23492,7 +23492,7 @@ Object.assign(lookup, {
|
|
|
23492
23492
|
// package.json
|
|
23493
23493
|
var package_default = {
|
|
23494
23494
|
name: "@autohq/cli",
|
|
23495
|
-
version: "0.1.
|
|
23495
|
+
version: "0.1.374",
|
|
23496
23496
|
license: "SEE LICENSE IN README.md",
|
|
23497
23497
|
publishConfig: {
|
|
23498
23498
|
access: "public"
|
|
@@ -28810,6 +28810,10 @@ var RunRuntimeRestartSchema = external_exports.object({
|
|
|
28810
28810
|
logTail: external_exports.string().nullable(),
|
|
28811
28811
|
logTailTruncated: external_exports.boolean()
|
|
28812
28812
|
});
|
|
28813
|
+
var RunModelFallbackSchema = external_exports.object({
|
|
28814
|
+
activatedAt: external_exports.string().datetime().nullable(),
|
|
28815
|
+
fallbackModelId: external_exports.string().nullable()
|
|
28816
|
+
});
|
|
28813
28817
|
var RunSummarySchema = external_exports.object({
|
|
28814
28818
|
session: external_exports.object({
|
|
28815
28819
|
id: SessionIdSchema2,
|
|
@@ -28895,7 +28899,9 @@ var RunSummarySchema = external_exports.object({
|
|
|
28895
28899
|
runtimeRestarts: external_exports.object({
|
|
28896
28900
|
count: external_exports.number().int().nonnegative(),
|
|
28897
28901
|
recent: external_exports.array(RunRuntimeRestartSchema)
|
|
28898
|
-
})
|
|
28902
|
+
}),
|
|
28903
|
+
/** Latest same-provider model-fallback activation for the session, if any. */
|
|
28904
|
+
modelFallback: RunModelFallbackSchema
|
|
28899
28905
|
});
|
|
28900
28906
|
|
|
28901
28907
|
// ../../packages/schemas/src/session-turns.ts
|
package/dist/index.js
CHANGED
|
@@ -20375,7 +20375,7 @@ var init_runtime_restart_diagnostics = __esm({
|
|
|
20375
20375
|
});
|
|
20376
20376
|
|
|
20377
20377
|
// ../../packages/schemas/src/session-introspection.ts
|
|
20378
|
-
var TruncatedValueSchema, RunConversationSearchSnippetSchema, RunConversationSearchMatchSchema, RunConversationSearchResponseSchema, SessionToolExchangeSchema, SessionToolExchangesResponseSchema, SESSION_TRIGGER_DELIVERY_ACTIONS, SessionTriggerDeliveryActionSchema, SESSION_EVENT_ORIGIN_KINDS, SessionEventOriginKindSchema, SessionTriggerDeliveryRecordSchema, SessionTriggersResponseSchema, RunBindingRecordSchema, RunBindingsResponseSchema, RunTurnSchema, SessionToolStatSchema, RunRuntimeRestartSchema, RunSummarySchema;
|
|
20378
|
+
var TruncatedValueSchema, RunConversationSearchSnippetSchema, RunConversationSearchMatchSchema, RunConversationSearchResponseSchema, SessionToolExchangeSchema, SessionToolExchangesResponseSchema, SESSION_TRIGGER_DELIVERY_ACTIONS, SessionTriggerDeliveryActionSchema, SESSION_EVENT_ORIGIN_KINDS, SessionEventOriginKindSchema, SessionTriggerDeliveryRecordSchema, SessionTriggersResponseSchema, RunBindingRecordSchema, RunBindingsResponseSchema, RunTurnSchema, SessionToolStatSchema, RunRuntimeRestartSchema, RunModelFallbackSchema, RunSummarySchema;
|
|
20379
20379
|
var init_session_introspection = __esm({
|
|
20380
20380
|
"../../packages/schemas/src/session-introspection.ts"() {
|
|
20381
20381
|
"use strict";
|
|
@@ -20526,6 +20526,10 @@ var init_session_introspection = __esm({
|
|
|
20526
20526
|
logTail: external_exports.string().nullable(),
|
|
20527
20527
|
logTailTruncated: external_exports.boolean()
|
|
20528
20528
|
});
|
|
20529
|
+
RunModelFallbackSchema = external_exports.object({
|
|
20530
|
+
activatedAt: external_exports.string().datetime().nullable(),
|
|
20531
|
+
fallbackModelId: external_exports.string().nullable()
|
|
20532
|
+
});
|
|
20529
20533
|
RunSummarySchema = external_exports.object({
|
|
20530
20534
|
session: external_exports.object({
|
|
20531
20535
|
id: SessionIdSchema,
|
|
@@ -20611,7 +20615,9 @@ var init_session_introspection = __esm({
|
|
|
20611
20615
|
runtimeRestarts: external_exports.object({
|
|
20612
20616
|
count: external_exports.number().int().nonnegative(),
|
|
20613
20617
|
recent: external_exports.array(RunRuntimeRestartSchema)
|
|
20614
|
-
})
|
|
20618
|
+
}),
|
|
20619
|
+
/** Latest same-provider model-fallback activation for the session, if any. */
|
|
20620
|
+
modelFallback: RunModelFallbackSchema
|
|
20615
20621
|
});
|
|
20616
20622
|
}
|
|
20617
20623
|
});
|
|
@@ -31828,7 +31834,7 @@ var init_package = __esm({
|
|
|
31828
31834
|
"package.json"() {
|
|
31829
31835
|
package_default = {
|
|
31830
31836
|
name: "@autohq/cli",
|
|
31831
|
-
version: "0.1.
|
|
31837
|
+
version: "0.1.374",
|
|
31832
31838
|
license: "SEE LICENSE IN README.md",
|
|
31833
31839
|
publishConfig: {
|
|
31834
31840
|
access: "public"
|