feat(sessions): add agent-to-agent post step

This commit is contained in:
Peter Steinberger
2026-01-04 03:04:55 +01:00
parent 052cec70ae
commit add1301a51
11 changed files with 295 additions and 11 deletions

View File

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

View File

@@ -2931,6 +2931,7 @@ export async function handleGatewayRequest(
deliver?: boolean;
channel?: string;
lane?: string;
extraSystemPrompt?: string;
idempotencyKey: string;
timeout?: number;
};
@@ -3122,6 +3123,7 @@ export async function handleGatewayRequest(
surface: "VoiceWake",
runId,
lane: params.lane,
extraSystemPrompt: params.extraSystemPrompt,
},
defaultRuntime,
deps,