-
Notifications
You must be signed in to change notification settings - Fork 54
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
Improve agentic execution UI #999
base: main
Are you sure you want to change the base?
Improve agentic execution UI #999
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #999 +/- ##
==========================================
- Coverage 13.83% 13.82% -0.01%
==========================================
Files 2361 2361
Lines 204862 204847 -15
Branches 185226 185211 -15
==========================================
- Hits 28339 28325 -14
+ Misses 175027 175022 -5
- Partials 1496 1500 +4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
crates/q_cli/src/cli/chat/mod.rs
Outdated
style::Print(format!("{}\n", "▔".repeat(terminal_width))), | ||
style::SetForegroundColor(Color::Reset), | ||
style::SetForegroundColor(Color::Blue), | ||
style::Print(format!("🧰 using tool: {}\n", tool.display_name())), |
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.
I am little hesitant to put emojis in because some of them behave drastically differently depending on which terminal you are on.
Have you tried testing to see how they look with different terminals? Some candidates are iTerm, ghostty, wez, and the native mac terminal.
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.
Good thoughts! We're actually already using emojis (see the "Completed in s" text). And I tested on my Mac terminal, iTerm and Wez (see screenshots).
They're fine displaying. Only Wez is showing some variations but not really breaking.
I will change the emoji to 🛠️ tho since ppl don't really like the current one



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.
Oh great! Thanks for confirming. Looks great.
This is a big visual change though. I want to run this by the team before we merge this.
0640af1
to
2335c09
Compare
2335c09
to
25b3062
Compare
Implements aws#921 which describes trusting and untrusting specific tools for the current session. - Start with default permissions. Users can change them from command line or within chat via /tools - `/acceptall` and `--accept-all` were deprecated in favor of `--trust-all-tools` and `/tools trustall`. They will continue to work, but display a notice and activation functionality of the new commands. - Command::AcceptAll no longer exists - UI has been reword a little, see screenshots. - `report_issue` will include trust override settings in the report. - Chat supports multiple tool use requests from Q at once. I have refactored the tool flow to allow asking permissions for individual tool requests at a time - Now, ExecuteTools (checks for acceptance one tool at a time) -> PromptUser (ask for acceptance) -> HandleInput (handle acceptance) -> ExecuteTools (find next tool that needs acceptance OR trigger execution if none remaining). - I was not able to find a prompt that made Q send multiple tool_uses in a single request coming from Q. It seems to do them iteratively even when asked to do them in parallel. - In any case, that original logic to support parallel requests is preserved with this new structure. Risks: May conflict with aws#999
Implements aws#921 which describes trusting and untrusting specific tools for the current session. - Start with default permissions. Users can change them from command line or within chat via /tools - `/acceptall` and `--accept-all` were deprecated in favor of `--trust-all-tools` and `/tools trustall`. They will continue to work, but display a notice and activation functionality of the new commands. - Command::AcceptAll no longer exists - UI has been reword a little, see screenshots. - `report_issue` will include trust override settings in the report. - Chat supports multiple tool use requests from Q at once. I have refactored the tool flow to allow asking permissions for individual tool requests at a time - Now, ExecuteTools (checks for acceptance one tool at a time) -> PromptUser (ask for acceptance) -> HandleInput (handle acceptance) -> ExecuteTools (find next tool that needs acceptance OR trigger execution if none remaining). - I was not able to find a prompt that made Q send multiple tool_uses in a single request coming from Q. It seems to do them iteratively even when asked to do them in parallel. - In any case, that original logic to support parallel requests is preserved with this new structure. Risks: May conflict with aws#999
Implements aws#921 which describes trusting and untrusting specific tools for the current session. - Start with default permissions. Users can change them from command line or within chat via /tools - `/acceptall` and `--accept-all` were deprecated in favor of `--trust-all-tools` and `/tools trustall`. They will continue to work, but display a notice and activation functionality of the new commands. - Command::AcceptAll no longer exists - UI has been reword a little, see screenshots. - `report_issue` will include trust override settings in the report. - Chat supports multiple tool use requests from Q at once. I have refactored the tool flow to allow asking permissions for individual tool requests at a time - Now, ExecuteTools (checks for acceptance one tool at a time) -> PromptUser (ask for acceptance) -> HandleInput (handle acceptance) -> ExecuteTools (find next tool that needs acceptance OR trigger execution if none remaining). - I was not able to find a prompt that made Q send multiple tool_uses in a single request coming from Q. It seems to do them iteratively even when asked to do them in parallel. - In any case, that original logic to support parallel requests is preserved with this new structure. Risks: May conflict with aws#999
See #998 for motivation
V1:
Screen.Recording.2025-03-28.at.3.27.23.PM.mov