-
Notifications
You must be signed in to change notification settings - Fork 272
feat(amazonq): Add model selection for agentic chat #5771
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
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
9bb3719
feat: Add model selection for agentic chat
zuoyaofu 3bdc17c
Merge branch 'feature/q-lsp-chat' into model-selection
zuoyaofu d83a405
remove unused import
zuoyaofu 5e4d665
Merge branch 'model-selection' of github.com:zuoyaofu/aws-toolkit-jet…
zuoyaofu 62b09a7
styles
zuoyaofu 7cb06b6
more styles
zuoyaofu 6430f4a
Merge branch 'feature/q-lsp-chat' into model-selection
zuoyaofu e26bf39
remove debug lines
zuoyaofu f3c00ae
Merge branch 'model-selection' of github.com:zuoyaofu/aws-toolkit-jet…
zuoyaofu 1e89687
address comments
zuoyaofu beba607
Merge main into feature/q-lsp-chat
aws-toolkit-automation 66c340c
Merge main into feature/q-lsp-chat
aws-toolkit-automation 2a570b4
Merge main into feature/q-lsp-chat
aws-toolkit-automation 3162670
Merge main into feature/q-lsp-chat
aws-toolkit-automation 379f871
Merge main into feature/q-lsp-chat
aws-toolkit-automation e41e500
Merge main into feature/q-lsp-chat
aws-toolkit-automation 94a94a6
Merge main into feature/q-lsp-chat
aws-toolkit-automation c7334cb
Merge main into feature/q-lsp-chat
aws-toolkit-automation 5855829
Merge main into feature/q-lsp-chat
aws-toolkit-automation 76edf06
Merge main into feature/q-lsp-chat
aws-toolkit-automation c4eb1f3
Merge main into feature/q-lsp-chat
aws-toolkit-automation ff86a59
Merge main into feature/q-lsp-chat
aws-toolkit-automation 4316504
Merge main into feature/q-lsp-chat
aws-toolkit-automation f49e99d
Merge main into feature/q-lsp-chat
aws-toolkit-automation 274c943
Merge main into feature/q-lsp-chat
aws-toolkit-automation 9d2ca9b
Merge main into feature/q-lsp-chat
aws-toolkit-automation 9d5c373
Merge branch 'feature/q-lsp-chat' into model-selection
zuoyaofu 95656a3
Merge main into feature/q-lsp-chat
aws-toolkit-automation d77d8a4
provide server-client handshake for model selection enabling
zuoyaofu 233f2db
Merge branch 'main' into model-selection
zuoyaofu 1421aed
Merge main into feature/q-lsp-chat
aws-toolkit-automation 8c16f6e
Merge branch 'feature/q-lsp-chat' into model-selection
zuoyaofu 9bc33a4
Update Browser.kt
zuoyaofu 4693fad
Merge branch 'main' into model-selection
zuoyaofu ba789c9
fix blank line
zuoyaofu 4b5cb78
Delete package-lock.json
zuoyaofu b1dec95
hardcode model selection to true
zuoyaofu aece2ce
Merge branch 'main' into model-selection
zuoyaofu 32e6f68
Merge branch 'main' into model-selection
zuoyaofu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
.changes/next-release/feature-e9ce3eeb-09a5-4418-ab15-91185f560532.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type" : "feature", | ||
"description" : "Add model selection feature" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was to address the issue of "Inconsistent behavior when opening agent tabs (/review, /doc, etc)." When the tab is reused it keeps the prompt input options visible, but when a new tab is created it doesn't.
aws/aws-toolkit-vscode#7265