⚡️ Speed up method BedrockConverseModel._map_inference_config
by 6%
#19
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.
📄 6% (0.06x) speedup for
BedrockConverseModel._map_inference_config
inpydantic_ai_slim/pydantic_ai/models/bedrock.py
⏱️ Runtime :
20.6 microseconds
→19.5 microseconds
(best of175
runs)📝 Explanation and details
Here is an optimized version of your program for faster runtime and improved efficiency, mainly by.
_map_inference_config
, instead populating the dict directly with only found keys.super().__init__()
by always passing values, so no runtime branching for defaulting profile. (The original branching could go wrong:provider.model_profile
is a method, so you must call it.).get()
by storing as a variable.The behavior and results remain unchanged.
Summary of changes:
dict.get()
calls.profile
to the superclass.This should be a faster and lighter version for your usage.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-BedrockConverseModel._map_inference_config-mddusok6
and push.