Open
Conversation
Remove unused variables/imports, widen delegation message setter types to accept updater functions, add missing type fields (TabKey 'helpers', PasskeyAuthOptions challenge, proposal yaml_content), and align prop types across ModelPicker/ChatHeader/useChatMessages. Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
…okens The distributed path was discarding the A2ARemoteClient.invoke() result, yielding only trace events with no content. Now: - Extracts response content from the result dict - Streams it as OpenAI-format SSE token chunks - Sends proper finish_reason=stop final chunk - Commits session before [DONE] This is the quick fix — full streaming proxy (SendStreamingMessage) will replace this when per-token streaming is needed. Co-authored-by: Cursor <cursoragent@cursor.com>
c7ac722 to
6464864
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.
Summary
Fix 13 TypeScript compilation errors that prevent the UI container from building (
tsc -bfails duringContainerfile.uibuild stage).Unused variables (5 fixes):
agent-topology.tsx— renameactiveAgentto_activeAgentuseInlineAssistant.ts— remove unusedabortStreamuse-force-graph.ts— rename to_prefersReducedMotionregistry-store.test.ts— remove unusedRegistryStateimportEntityActionMenu.test.tsx— remove unusedEntityActionimportType fixes (6 fixes):
test/setup.ts— add@ts-expect-errorfor CJS requireregistry-store.ts— addhelperstoTabKeyunionChatHeader.tsx/useChatMessages.ts— alignModelInfoandConversationtypesproposals.ts— addyaml_contentto create mutation typeuseInlineAssistant.ts— widen setter type forDelegationMsgOther fixes (2):
auth.ts— addchallengetoPasskeyAuthOptionsdashboard-editor/index.tsx— addundefinedargument touseRef(React 19)Test plan
npx tsc --noEmitpasses locallyMade with Cursor