feat(agui): propagate userId from forwardedProps to RuntimeContext#2044
Open
ningmeng0503 wants to merge 1 commit into
Open
feat(agui): propagate userId from forwardedProps to RuntimeContext#2044ningmeng0503 wants to merge 1 commit into
ningmeng0503 wants to merge 1 commit into
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
e8d07f8 to
61a18aa
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.
When an AG-UI client sends a
userIdinsideRunAgentInput.forwardedProps,AguiAgentAdapternow copies it into the builtRuntimeContextso that downstream agents, tools, and hooks can accessit via
RuntimeContext.getUserId().Changes
FORWARDED_PROP_USER_ID_KEY = "userId"constant inAguiAgentAdapter.AguiAgentAdapter.buildRuntimeContext(RunAgentInput)to readuserIdfrominput.getForwardedProps()and set it onRuntimeContext.Builder.userId(...).userIdvalues are ignored.forwardedPropsmap underagui.forwardedPropsis preserved.AguiAgentAdapterTestcovering:userIdset from forwarded propsuserIdconverted to StringuserIdkeepsRuntimeContext.getUserId()nulluserIdis ignoredExample
An AG-UI client can now forward the user identity like this:
{ "threadId": "thread-1", "runId": "run-1", "forwardedProps": { "userId": "user-123" } } Inside the agent run, RuntimeContext.getUserId() will return "user-123". Checklist - [x] Change is localized to AguiAgentAdapter. - [x] Existing RuntimeContext behavior is preserved. - [x] Unit tests added and passing. - [x] Spotless formatting applied.