-
Notifications
You must be signed in to change notification settings - Fork 253
fix(amazonq): Enable stop button of chat #5671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 11 commits
d77d1f0
7c1072e
2716615
5e244e5
40ff18b
751ee10
9edb7d1
1b06300
77856c5
be30911
979f640
060bdaf
988518e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.chat | ||
import java.util.UUID | ||
|
||
data class ChatUiMessageParams( | ||
val title: String, | ||
val additionalMessages: List<String> = emptyList(), | ||
val messageId: String = UUID.randomUUID().toString(), | ||
val buttons: List<String> = emptyList(), | ||
val codeReference: List<String> = emptyList(), | ||
val body: String = "", | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.chat | ||
|
||
data class StopResponseMessage( | ||
val params: StopResponseParams, | ||
) | ||
|
||
data class StopResponseParams( | ||
val tabId: String, | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ action.aws.toolkit.toolwindow.explorer.newConnection.text=Setup authentication t | |
action.aws.toolkit.toolwindow.newConnection.text=Add Another Connection... | ||
action.dynamic.open.text=Open Resource... | ||
action.q.openchat.text=Open Chat Panel | ||
amazonqChat.stopChatResponse=You stopped your current work, please provide additional examples or ask another question. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should use amazonq bundle instead @leigaol There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are lots of new messages checked in the core bundle... I was following previous commits. Can do as a fast follow. This needs to go in for today's bug bash. I have 2nd PR depending on this! |
||
amazonqChat.project_context.index_in_progress=By the way, I'm still indexing this project for full context from your workspace. I may have a better response in a few minutes when it's complete if you'd like to try again then. | ||
amazonqDoc.answer.codeResult=You can accept the changes to your files, or describe any additional changes you'd like me to make. | ||
amazonqDoc.answer.readmeCreated=I've created a README for your code. | ||
|
Uh oh!
There was an error while loading. Please reload this page.