We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4446831 commit 8045a59Copy full SHA for 8045a59
packages/core/src/codewhispererChat/controllers/chat/controller.ts
@@ -1426,7 +1426,9 @@ export class ChatController {
1426
}
1427
this.telemetryHelper.recordEnterFocusConversation(triggerEvent.tabID)
1428
this.telemetryHelper.recordStartConversation(triggerEvent, triggerPayload)
1429
- chatHistory.appendUserMessage(fixedHistoryMessage)
+ if (request.conversationState.currentMessage) {
1430
+ chatHistory.appendUserMessage(request.conversationState.currentMessage)
1431
+ }
1432
1433
getLogger().info(
1434
`response to tab: ${tabID} conversationID: ${session.sessionIdentifier} requestID: ${
0 commit comments