Draft
Conversation
efa2c3f to
cbb7620
Compare
0f15690 to
5ed84b3
Compare
5ed84b3 to
b1269ec
Compare
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.
depends on this AG-UI PR sonleoracle/ag-ui#3
Instructions: put the
ag-ui/folder andwith-agent-spec/folder under the same directory, e.g.,Projects/, becausewith-agent-specpackage.jsoninstalls some node packages from source fromag-ui/(e.g.@ag-ui/agent-specand@ag-ui/a2ui-middlewareamong other packages).Issues encountered on the CopilotKit side:
- A2UI surfaces with bottom actions (e.g. calendar card buttons) get clipped because the upstream A2UI renderer wraps the surface in an overflow-hidden container and sets overflow: hidden + height: 100% inline on , preventing scrolling and cutting off button labels. Details: issue-copilotkit-a2ui-clipping.md; workaround patch files: src/app/patches/@copilotkit/a2ui-renderer/dist/
A2UIMessageRenderer.js (+ .map).
- CopilotKit v2 emits React keys for custom “before/after” renderers as ${message.id}-custom-before/-custom-after, which can collide when message IDs repeat (or during placeholder/rehydration flows), causing noisy duplicate-key warnings; appending message.role to the key avoids collisions. Details: issue-copilotkit-custom-before-key-warning.md; workaround patch files: src/app/patches/@copilotkitnext/react/
dist/index.mjs (+ .map).