fix: Add support for parameterless ops #11
Merged
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.
Why:
Enhances the
_convert_operation_to_openai_schema
function to correctly handle OpenAPI specifications that lack parameters, ensuring valid schema returns even when no parameters are present.What:
_convert_operation_to_openai_schema
to handle parameterless specifications by implementing a fall-back schema creation mechanism.parameterless.yml
to test parameterless OpenAPI schema scenarios.How can it be used:
This ensures the function outputs a valid schema when processing specs without parameters.
How did you test it:
Test cases were added to verify proper conversion of parameterless OpenAPI specifications. The new tests validate that functions are correctly extracted and described, even in the absence of parameters.
Notes for the reviewer:
Ensure to check that the revamped
_convert_operation_to_openai_schema
consistently handles edge cases related to missing parameters, and that other functionalities remain intact. Pay attention to the additional test coverage introduced viaparameterless.yml
.