-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: function schemas #463
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #463 +/- ##
==========================================
+ Coverage 72.09% 72.29% +0.19%
==========================================
Files 39 39
Lines 3290 3292 +2
==========================================
+ Hits 2372 2380 +8
+ Misses 918 912 -6 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
PR Type
Bug fix
Description
from_tuple
method by ensuringfunction_schemas
is a list, even if initially provided as a dictionary.get_sync_strategy
with thesync_mode
parameter insync
method.Changes walkthrough 📝
layer.py
Update sync strategy method call with parameter
semantic_router/layer.py
to_sync_strategy
toget_sync_strategy
withsync_mode
parameter.schema.py
Fix function schemas handling in from_tuple method
semantic_router/schema.py
function_schemas
to convert dict to list if necessary.