fix: avoid sessions_send timeouts

This commit is contained in:
Peter Steinberger
2026-01-04 01:52:01 +01:00
parent cbf41859aa
commit fe67073b74
6 changed files with 10 additions and 0 deletions

View File

@@ -208,6 +208,7 @@ export const AgentParamsSchema = Type.Object(
deliver: Type.Optional(Type.Boolean()),
channel: Type.Optional(Type.String()),
timeout: Type.Optional(Type.Integer({ minimum: 0 })),
lane: Type.Optional(Type.String()),
idempotencyKey: NonEmptyString,
},
{ additionalProperties: false },

View File

@@ -2930,6 +2930,7 @@ export async function handleGatewayRequest(
thinking?: string;
deliver?: boolean;
channel?: string;
lane?: string;
idempotencyKey: string;
timeout?: number;
};
@@ -3118,6 +3119,7 @@ export async function handleGatewayRequest(
timeout: params.timeout?.toString(),
bestEffortDeliver,
surface: "VoiceWake",
lane: params.lane,
},
defaultRuntime,
deps,