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 995a589 commit d066d91
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 @@ -115,7 +115,7 @@ export class OrchestratorChatAgent extends AbstractStreamParsingChatAgent implem
let agentIds: string[] = [];
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);
const orchestratorRequestId = request.getDataByKey(OrchestatorRequestIdKey);

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-18.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-20.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-18.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Smoke Test for Browser Example Production Build on ubuntu-latest with Node.js 18.x

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Playwright Tests (ubuntu-latest, Node.js 18.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Lint

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-20.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-20.x)

'orchestratorRequestId' is declared but its value is never read.

Check failure on line 118 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-18.x)

'orchestratorRequestId' is declared but its value is never read.
if (typeof orchestratorRequestID === 'string') {

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-18.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-14, node-20.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-18.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Smoke Test for Browser Example Production Build on ubuntu-latest with Node.js 18.x

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Playwright Tests (ubuntu-latest, Node.js 18.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Lint

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, node-20.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-20.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?

Check failure on line 119 in packages/ai-chat/src/common/orchestrator-chat-agent.ts

View workflow job for this annotation

GitHub Actions / Build and Test (windows-2019, node-18.x)

Cannot find name 'orchestratorRequestID'. Did you mean 'orchestratorRequestId'?
this.recordingService.recordResponse({
agentId: this.id,
Expand Down

0 comments on commit d066d91

Please sign in to comment.