Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "feature",
"description" : "Amazon Q Chat: Added additional parameters to onCopyCodeToClipboard and onCodeInsertToCursorPosition events"
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ class ChatPromptHandler(private val telemetryHelper: TelemetryHelper) {
private var requestId: String = ""
private var statusCode: Int = 0

private fun countTotalNumberOfCodeBlocks(message: StringBuilder): Int {
if (message.isEmpty()) {
return 0
}
val countOfCodeBlocks = Regex("^```", RegexOption.MULTILINE).findAll(message)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

static regex should only be created once

val numberOfTripleBackTicksInMarkdown = countOfCodeBlocks.count()
return numberOfTripleBackTicksInMarkdown / 2
}

fun handle(
tabId: String,
triggerId: String,
Expand Down Expand Up @@ -75,7 +84,7 @@ class ChatPromptHandler(private val telemetryHelper: TelemetryHelper) {
ChatMessage(tabId = tabId, triggerId = triggerId, messageId = requestId, messageType = ChatMessageType.Answer, followUps = followUps)

telemetryHelper.setResponseStreamTotalTime(tabId)
telemetryHelper.recordAddMessage(data, response, responseText.length, statusCode)
telemetryHelper.recordAddMessage(data, response, responseText.length, statusCode, countTotalNumberOfCodeBlocks(responseText))
emit(response)
}
.catch { exception ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class TelemetryHelper(private val context: AmazonQAppInitContext, private val se
}

// When Chat API responds to a user message (full response streamed)
fun recordAddMessage(data: ChatRequestData, response: ChatMessage, responseLength: Int, statusCode: Int) {
fun recordAddMessage(data: ChatRequestData, response: ChatMessage, responseLength: Int, statusCode: Int, numberOfCodeBlocks: Int) {
AmazonqTelemetry.addMessage(
cwsprChatConversationId = getConversationId(response.tabId).orEmpty(),
cwsprChatMessageId = response.messageId,
Expand All @@ -93,7 +93,7 @@ class TelemetryHelper(private val context: AmazonQAppInitContext, private val se
cwsprChatProgrammingLanguage = data.activeFileContext.fileContext?.fileLanguage,
cwsprChatActiveEditorTotalCharacters = data.activeFileContext.focusAreaContext?.codeSelection?.length,
cwsprChatActiveEditorImportCount = data.activeFileContext.focusAreaContext?.codeNames?.fullyQualifiedNames?.used?.size,
cwsprChatResponseCodeSnippetCount = 0,
cwsprChatResponseCodeSnippetCount = numberOfCodeBlocks,
cwsprChatResponseCode = statusCode,
cwsprChatSourceLinkCount = response.relatedSuggestions?.size,
cwsprChatReferencesCount = 0, // TODO
Expand Down Expand Up @@ -122,6 +122,7 @@ class TelemetryHelper(private val context: AmazonQAppInitContext, private val se
(responseStreamTotalTime[response.tabId] ?: 0).toDouble(),
data.message.length,
responseLength,
numberOfCodeBlocks
)
}

Expand Down Expand Up @@ -190,7 +191,9 @@ class TelemetryHelper(private val context: AmazonQAppInitContext, private val se
cwsprChatAcceptedCharactersLength = message.code.length,
cwsprChatInteractionTarget = message.insertionTargetType,
cwsprChatHasReference = null,
credentialStartUrl = getStartUrl(context.project)
credentialStartUrl = getStartUrl(context.project),
cwsprChatCodeBlockIndex = message.codeBlockIndex,
cwsprChatTotalCodeBlocks = message.totalCodeBlocks
)
ChatInteractWithMessageEvent.builder().apply {
conversationId(getConversationId(message.tabId).orEmpty())
Expand All @@ -209,7 +212,9 @@ class TelemetryHelper(private val context: AmazonQAppInitContext, private val se
cwsprChatAcceptedCharactersLength = message.code.length,
cwsprChatInteractionTarget = message.insertionTargetType,
cwsprChatHasReference = null,
credentialStartUrl = getStartUrl(context.project)
credentialStartUrl = getStartUrl(context.project),
cwsprChatCodeBlockIndex = message.codeBlockIndex,
cwsprChatTotalCodeBlocks = message.totalCodeBlocks
)
ChatInteractWithMessageEvent.builder().apply {
conversationId(getConversationId(message.tabId).orEmpty())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ sealed interface IncomingCwcMessage : CwcMessage {
val messageId: String,
val code: String,
val insertionTargetType: String?,
val eventId: String?,
val codeBlockIndex: Int?,
val totalCodeBlocks: Int?
) : IncomingCwcMessage

data class InsertCodeAtCursorPosition(
Expand All @@ -75,6 +78,9 @@ sealed interface IncomingCwcMessage : CwcMessage {
val code: String,
val insertionTargetType: String?,
val codeReference: List<CodeReference>?,
val eventId: String?,
val codeBlockIndex: Int?,
val totalCodeBlocks: Int?
) : IncomingCwcMessage

data class TriggerTabIdReceived(
Expand Down
8 changes: 4 additions & 4 deletions plugins/amazonq/mynah-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/amazonq/mynah-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"lintfix": "eslint -c .eslintrc.js --fix --ext .ts ."
},
"dependencies": {
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.4.2",
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.5.6",
"@types/node": "^14.18.5",
"fs-extra": "^10.0.1",
"ts-node": "^10.7.0",
Expand Down
16 changes: 14 additions & 2 deletions plugins/amazonq/mynah-ui/src/mynah-ui/ui/apps/cwChatConnector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ export class Connector {
messageId: string,
code?: string,
type?: 'selection' | 'block',
codeReference?: CodeReference[]
codeReference?: CodeReference[],
eventId?: string,
codeBlockIndex?: number,
totalCodeBlocks?: number
): void => {
this.sendMessageToExtension({
tabID: tabID,
Expand All @@ -102,6 +105,9 @@ export class Connector {
tabType: 'cwc',
insertionTargetType: type,
codeReference,
eventId,
codeBlockIndex,
totalCodeBlocks,
})
}

Expand All @@ -110,7 +116,10 @@ export class Connector {
messageId: string,
code?: string,
type?: 'selection' | 'block',
codeReference?: CodeReference[]
codeReference?: CodeReference[],
eventId?: string,
codeBlockIndex?: number,
totalCodeBlocks?: number
): void => {
this.sendMessageToExtension({
tabID: tabID,
Expand All @@ -120,6 +129,9 @@ export class Connector {
tabType: 'cwc',
insertionTargetType: type,
codeReference,
eventId,
codeBlockIndex,
totalCodeBlocks,
})
}

Expand Down
14 changes: 10 additions & 4 deletions plugins/amazonq/mynah-ui/src/mynah-ui/ui/connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,14 @@ export class Connector {
messageId: string,
code?: string,
type?: 'selection' | 'block',
codeReference?: CodeReference[]
codeReference?: CodeReference[],
eventId?: string,
codeBlockIndex?: number,
totalCodeBlocks?: number
): void => {
switch (this.tabsStorage.getTab(tabID)?.type) {
case 'cwc':
this.cwChatConnector.onCodeInsertToCursorPosition(tabID, messageId, code, type, codeReference)
this.cwChatConnector.onCodeInsertToCursorPosition(tabID, messageId, code, type, codeReference, eventId, codeBlockIndex, totalCodeBlocks)
break
case 'featuredev':
this.featureDevChatConnector.onCodeInsertToCursorPosition(tabID, code, type, codeReference)
Expand All @@ -229,11 +232,14 @@ export class Connector {
messageId: string,
code?: string,
type?: 'selection' | 'block',
codeReference?: CodeReference[]
codeReference?: CodeReference[],
eventId?: string,
codeBlockIndex?: number,
totalCodeBlocks?: number
): void => {
switch (this.tabsStorage.getTab(tabID)?.type) {
case 'cwc':
this.cwChatConnector.onCopyCodeToClipboard(tabID, messageId, code, type, codeReference)
this.cwChatConnector.onCopyCodeToClipboard(tabID, messageId, code, type, codeReference, eventId, codeBlockIndex, totalCodeBlocks)
break
case 'featuredev':
this.featureDevChatConnector.onCopyCodeToClipboard(tabID, code, type, codeReference)
Expand Down
22 changes: 20 additions & 2 deletions plugins/amazonq/mynah-ui/src/mynah-ui/ui/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,26 @@ export const createMynahUI = (ideApi: any, featureDevInitEnabled: boolean, codeT
})
},
onCodeInsertToCursorPosition: connector.onCodeInsertToCursorPosition,
onCopyCodeToClipboard: (tabId, messageId, code, type, referenceTrackerInfo) => {
connector.onCopyCodeToClipboard(tabId, messageId, code, type, referenceTrackerInfo)
onCopyCodeToClipboard: (
tabId,
messageId,
code,
type,
referenceTrackerInfo,
eventId,
codeBlockIndex,
totalCodeBlocks
) => {
connector.onCopyCodeToClipboard(
tabId,
messageId,
code,
type,
referenceTrackerInfo,
eventId,
codeBlockIndex,
totalCodeBlocks
)
mynahUI.notify({
type: NotificationType.SUCCESS,
content: 'Selected code is copied to clipboard',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,16 @@
"type": "string",
"description": "Identifies the entity within the message that user interacts with."
},
{
"name": "cwsprChatCodeBlockIndex",
"type": "int",
"description": "Index of the code block inside a message in the conversation."
},
{
"name": "cwsprChatTotalCodeBlocks",
"type": "int",
"description": "Total number of code blocks inside a message in the conversation."
},
{
"name": "cwsprChatAcceptedCharactersLength",
"type": "int",
Expand Down Expand Up @@ -464,6 +474,14 @@
"type": "cwsprChatInteractionTarget",
"required": false
},
{
"type": "cwsprChatCodeBlockIndex",
"required": false
},
{
"type": "cwsprChatTotalCodeBlocks",
"required": false
},
{
"type": "cwsprChatAcceptedCharactersLength",
"required": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@
"timeBetweenChunks": { "shape": "TimeBetweenChunks" },
"fullResponselatency": { "shape": "Double" },
"requestLength": { "shape": "Integer" },
"responseLength": { "shape": "Integer" }
"responseLength": { "shape": "Integer" },
"numberOfCodeBlocks": { "shape": "Integer" }
}
},
"ChatHistory":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ interface CodeWhispererClientAdaptor : Disposable {
fullResponselatency: Double?,
requestLength: Int?,
responseLength: Int?,
numberOfCodeBlocks: Int?
): SendTelemetryEventResponse

fun sendChatInteractWithMessageTelemetry(
Expand Down Expand Up @@ -447,7 +448,8 @@ open class CodeWhispererClientAdaptorImpl(override val project: Project) : CodeW
timeBetweenChunks: List<Double>?,
fullResponselatency: Double?,
requestLength: Int?,
responseLength: Int?
responseLength: Int?,
numberOfCodeBlocks: Int?
): SendTelemetryEventResponse = bearerClient().sendTelemetryEvent { requestBuilder ->
requestBuilder.telemetryEvent { telemetryEventBuilder ->
telemetryEventBuilder.chatAddMessageEvent {
Expand All @@ -462,6 +464,7 @@ open class CodeWhispererClientAdaptorImpl(override val project: Project) : CodeW
it.fullResponselatency(fullResponselatency)
it.requestLength(requestLength)
it.responseLength(responseLength)
it.numberOfCodeBlocks(numberOfCodeBlocks)
}
}
requestBuilder.optOutPreference(getTelemetryOptOutPreference())
Expand Down