Preserve Pydantic AI context across validator retries - #511
Open
hertznsk wants to merge 8 commits into
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.
Preserve Pydantic AI context across validator retries
Summary
Why
Validator retries previously called the primary agent again with a reconstructed prompt. For the Pydantic AI providers, that discarded the model response and any tool-call/tool-result exchanges from the first attempt. The correction now uses Pydantic AI message history so the model can revise its existing work with the validator feedback in context.
Testing
make checkuv run pytest tests/test_engine/test_validator_integration.py tests/test_providers/test_pydantic_ai_interrupt.py tests/test_providers/test_pydantic_ai_provider.py tests/test_providers/test_openai.py -qmake test(8610 passed, 32 skipped; 4 unrelated environment/performance failures: two POSIX unreadable-path assertions and the existing Claude performance thresholds)Notes
all_messages()asmessage_historyand the validator feedback as a new user promptAGENTS.mdvalidator sections updated to describe the continuation behavior; a fail-open regression test covers a failing continuation re-run