feat: advance SequentialAgent to later sub-agents after a HITL resume when resumability is enabled#1303
Merged
Merged
Conversation
982ccf1 to
57dd63f
Compare
209632e to
fbfa6c2
Compare
fbfa6c2 to
24ee488
Compare
… when resumability is enabled Gated behind App.resumabilityConfig (opt-in, off by default), mirroring Python ADK v1's ResumabilityConfig.is_resumable. When enabled, a resumed function response re-enters its call's top-most SequentialAgent ancestor and fast-forwards to the paused sub-agent, so the sequence continues to later sub-agents (e.g. run C after B's HITL tool) and pauses on a pending long-running call. When disabled, behavior matches Python ADK v1 with resumability off. The LLM flow and LoopAgent also pause on a pending long-running call when resumable, mirroring Python ADK v1, so a resumed agent does not keep re-calling the model (a runaway loop that burns tokens). ParallelAgent needs no change: each branch pauses via the flow. PiperOrigin-RevId: 938479982
24ee488 to
407478b
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.
feat: advance SequentialAgent to later sub-agents after a HITL resume when resumability is enabled
Gated behind App.resumabilityConfig (opt-in, off by default), mirroring Python
ADK v1's ResumabilityConfig.is_resumable. When enabled, a resumed function
response re-enters its call's top-most SequentialAgent ancestor and fast-forwards
to the paused sub-agent, so the sequence continues to later sub-agents (e.g. run
C after B's HITL tool) and pauses on a pending long-running call. When disabled,
behavior matches Python ADK v1 with resumability off.
The LLM flow and LoopAgent also pause on a pending long-running call when
resumable, mirroring Python ADK v1, so a resumed agent does not keep re-calling
the model (a runaway loop that burns tokens). ParallelAgent needs no change: each
branch pauses via the flow.