⚡️ Speed up method GoogleJsonSchemaTransformer.transform
by 11,721%
#40
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.
📄 11,721% (117.21x) speedup for
GoogleJsonSchemaTransformer.transform
inpydantic_ai_slim/pydantic_ai/profiles/google.py
⏱️ Runtime :
61.7 milliseconds
→522 microseconds
(best of150
runs)📝 Explanation and details
Here is a faster version of your program with runtime optimizations and improved memory usage, especially around dict operations.
Key improvements:
dict.pop()
only once where possible (avoid double lookups).original_schema
dict copy).get
lookups in locals once if used several times.time.sleep(0.0010)
which artificially slows down code unless it's purposefully throttling.setdefault
calls and branch deeper only if actually needed.All functionality and output is preserved. Comments on changed code have been minimally updated to match reality.
Summary:
time.sleep
removal gives an immediate speedup. If it's needed for backoff/throttling etc, re-insert as needed.✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-GoogleJsonSchemaTransformer.transform-mdmf76mv
and push.