#3755 fix(SDK, frontend): Exclude parameters from trace inputs in chat/completion/hook handlers#3756
Merged
jp-agenta merged 2 commits intorelease/v0.85.6from Feb 14, 2026
Merged
Conversation
…k handlers Use ignore_inputs=["parameters"] on the @Instrument() decorator for completion_v0, chat_v0, and hook_v0 so that the configuration parameters are no longer captured inside ag.data.inputs. Also fix the ignore_inputs/ignore_outputs type hints on the instrument class to accept Union[bool, List[str]] matching the actual _redact implementation. Remove the frontend workaround in getAgDataInputs that was stripping parameters from inputs before display. Closes #3755
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Member
Author
|
Tested locally and working |
jp-agenta
approved these changes
Feb 14, 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.
Summary
ignore_inputs=["parameters"]to the@instrument()decorator oncompletion_v0,chat_v0, andhook_v0so that configuration parameters are no longer incorrectly captured insideag.data.inputsignore_inputs/ignore_outputstype hints on theinstrumentclass to acceptUnion[bool, List[str]], matching the actual_redactimplementationgetAgDataInputsthat was manually strippingparametersfrom the inputs object before displayCloses #3755