diff --git a/apps/server/src/services/llm/pipeline/stages/error_recovery_stage.ts b/apps/server/src/services/llm/pipeline/stages/error_recovery_stage.ts index e49eeccdf..c753a57ad 100644 --- a/apps/server/src/services/llm/pipeline/stages/error_recovery_stage.ts +++ b/apps/server/src/services/llm/pipeline/stages/error_recovery_stage.ts @@ -98,7 +98,12 @@ export class ErrorRecoveryStage extends BasePipelineStage = []; const updatedMessages = [...input.messages]; // Process each tool call with recovery diff --git a/apps/server/src/services/ws.ts b/apps/server/src/services/ws.ts index ad1aafe0f..2692f47eb 100644 --- a/apps/server/src/services/ws.ts +++ b/apps/server/src/services/ws.ts @@ -48,6 +48,9 @@ interface Message { chatNoteId?: string; content?: string; thinking?: string; + interactionId?: string; + response?: string; + timestamp?: number; toolExecution?: { action?: string; tool?: string;