-
-
Notifications
You must be signed in to change notification settings - Fork 11.3k
[Chore]: One pythonic tool parser test uses the wrong parser #26515
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
[Chore]: One pythonic tool parser test uses the wrong parser #26515
Conversation
This fixes an issue pointed out by Gemini on a separate PR, where the `test_pythonic_tool_parser.py` was accidentally testing against the `llama4_pythonic` parser instead of the `pythonic` parser in one of its tests. Signed-off-by: Ben Browning <bbrownin@redhat.com>
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.
Code Review
This pull request correctly fixes a test case in test_pythonic_tool_parser.py that was using the wrong tool parser (llama4_pythonic instead of pythonic). The change aligns the test with its intended purpose of testing the pythonic tool parser. The fix is straightforward and correct, and I have no further suggestions.
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: xuebwang-amd <xuebwang@amd.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: Dhruvil Bhatt <bhattdbh@amazon.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: bbartels <benjamin@bartels.dev>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: xuebwang-amd <xuebwang@amd.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: 0xrushi <6279035+0xrushi@users.noreply.github.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com> Signed-off-by: 0xrushi <6279035+0xrushi@users.noreply.github.com>
…oject#26515) Signed-off-by: Ben Browning <bbrownin@redhat.com>
Purpose
This fixes an issue pointed out by Gemini on a separate PR, where the
test_pythonic_tool_parser.pywas accidentally testing against thellama4_pythonicparser instead of thepythonicparser in one of its tests.Test Plan
Test Result
The test passed before and after this change, but now it's testing the right tool call parser.