feat(Designer): Info bubble for code interpreter (#9043)#9047
Merged
Elaina-Lee merged 3 commits intohotfix/v5.294from Apr 10, 2026
Merged
feat(Designer): Info bubble for code interpreter (#9043)#9047Elaina-Lee merged 3 commits intohotfix/v5.294from
Elaina-Lee merged 3 commits intohotfix/v5.294from
Conversation
…gent loop (#9043) * feat(DesignerUI): Add info bubble for code interpreter in consumption agent loop Add an info tooltip next to the Code Interpreter display name in the built-in tools editor, informing users that an integration account is required. The tooltip includes a "Read more" link to the relevant Microsoft Learn documentation. This is consumption-only, driven by the manifest's editorOptions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(DesignerUI): Update code interpreter description wording Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(DesignerUI): Update builtintools snapshot for toolNameRow wrapper Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:
|
| Section | Status | Recommendation |
|---|---|---|
| Title | Remove the original PR number or add explicit cherry-pick context in the title | |
| Commit Type | ✅ | No change needed |
| Risk Level | ✅ | No change needed (matches labels and diff) |
| What & Why | ✅ | No change needed |
| Impact of Change | ✅ | No change needed |
| Test Plan | ✅ | Unit test updates present; E2E optional |
| Contributors | ✅ | No change needed |
| Screenshots/Videos | Optional: add screenshot/gif if you want easier UI review |
Final notes:
- Overall this PR is well-formed and aligns with the repository's PR body template. I verified the code diff: the change adds an optional tooltip/info icon UI in builtintools, updates styles and imports, adds three optional fields to the BuiltinToolOption interface, and updates the consumption manifest to include the info text and link for the code_interpreter option. Unit test snapshot/spec updates are present in the diff confirming tests were updated.
Please update the PR title if you want to remove the original PR number or make the cherry-pick/hotfix intent more explicit. Otherwise this PR passes validation.
Thank you for the clear PR body and tests!
Last updated: Fri, 10 Apr 2026 23:19:16 GMT
📊 Coverage CheckNo source files changed in this PR. |
takyyon
approved these changes
Apr 10, 2026
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
lambrianmsft
approved these changes
Apr 10, 2026
This was referenced Apr 13, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Commit Type
Risk Level
What & Why
Cherry-picks PR #9043 from
maininto thehotfix/v5.294release branch.Adds an info tooltip next to the Code Interpreter display name in the built-in tools editor for consumption agent loop workflows. The tooltip informs users that an integration account is required to enable code interpreter, with a "Read more" link to the relevant Microsoft Learn documentation.
This is consumption-only — the
infoMessage,infoLinkText, andinfoLinkUrlfields are added to the consumption agent loop manifest'scode_interpreteroption, and theBuiltinToolOptioninterface supports them optionally.Impact of Change
BuiltinToolOptioninterface gains three optional fields (infoMessage,infoLinkText,infoLinkUrl) for adding info tooltips to any built-in tool optionTest Plan
builtintools.spec.tsx+ snapshot in original PR)Contributors
@Elaina-Lee