-
Notifications
You must be signed in to change notification settings - Fork 981
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
feat: Add strict_mode option to function_schema and function_tool #60
feat: Add strict_mode option to function_schema and function_tool #60
Conversation
Hey @codefromthecrypt, I used your suggested edge cases (e.g., multiple optional parameters of different types) as inspiration for the test cases in this PR. Thanks for the great examples! Let me know if you have any additional suggestions or feedback. |
Hey @rm-openai, I've implemented the strict_mode option for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tests look easier than I thought. you found a nice place to put them!
Co-authored-by: Adrian Cole <[email protected]>
197abec
to
0c33a24
Compare
@rm-openai if you don't mind cutting a release by weds, that would be great. I'm using this as a demo at the red hat user group in Cary, NC thursday https://www.meetup.com/raleigh-rhug/events/306421516/?eventOrigin=group_upcoming_events |
…enai#60) This PR introduces a `strict_mode: bool = True` option to `@function_tool`, allowing optional parameters when set to False. This change enables more flexibility while maintaining strict JSON schema validation by default. resolves openai#43 ## Changes: - Added `strict_mode` parameter to `@function_tool` and passed it to `function_schema` and `FunctionTool`. - Updated `function_schema.py` to respect `strict_mode` and allow optional parameters when set to False. - Added unit tests to verify optional parameters work correctly, including multiple optional params with different types. ## Tests: - Verified function calls with missing optional parameters behave as expected. - Added async tests to validate behavior under different configurations.
This PR introduces a
strict_mode: bool = True
option to@function_tool
, allowing optional parameters when set to False. This change enables more flexibility while maintaining strict JSON schema validation by default.resolves #43
Changes:
strict_mode
parameter to@function_tool
and passed it tofunction_schema
andFunctionTool
.function_schema.py
to respectstrict_mode
and allow optional parameters when set to False.Tests: