fix: add missing run_context parameter to pre-hooks and post-hooks reference#520
Open
emanuel-braz wants to merge 1 commit intoagno-agi:mainfrom
Open
Conversation
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.
Description
The reference pages for pre-hooks and post-hooks listed
session_state,dependencies, andmetadataas directly injectable parameters, but the SDK never injects them. These values are only accessible viarun_context.session_state,run_context.dependencies, andrun_context.metadata.Additionally,
run_context(which is actually injected) was missing from both parameter tables.This fix removes the three incorrect parameters and adds
run_contextwith a link to the Run Context reference, aligning the reference pages with:run_context)agno/agent/_hooks.pyandagno/team/_hooks.pyVerified against SDK v2.5.0 (commit ddd1292) and current
main.Files changed
reference/hooks/pre-hooks.mdx- Removedsession_state,dependencies,metadata; addedrun_contextreference/hooks/post-hooks.mdx- Removedsession_state,dependencies,metadata; addedrun_contextType of Change
Related Issues/PRs (if applicable)
Checklist