Skip to content

Commit

Permalink
Update packages/ai-chat/src/common/orchestrator-chat-agent.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Philip Langer <[email protected]>
  • Loading branch information
JonasHelming and planger authored Oct 6, 2024
1 parent d066d91 commit 23d67b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ai-chat/src/common/orchestrator-chat-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class OrchestratorChatAgent extends AbstractStreamParsingChatAgent implem
const responseText = await getTextOfResponse(response);
// We use the previously generated, dedicated ID to log the orchestrator response before we forward the original request
const orchestratorRequestId = request.getDataByKey(OrchestatorRequestIdKey);
if (typeof orchestratorRequestID === 'string') {
if (typeof orchestratorRequestId === 'string') {
this.recordingService.recordResponse({
agentId: this.id,
sessionId: request.session.id,
Expand Down

0 comments on commit 23d67b7

Please sign in to comment.