-
Notifications
You must be signed in to change notification settings - Fork 762
Recursive filter_none in Inference Providers #3178
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0d7681a
Recursive filter_none in Inference Providers
Wauplin f3f7f29
filter none values from messages as well
hanouticelina 9fb612e
update filter_none and add test cases
hanouticelina 03019ff
don't drop empty dicts in list
hanouticelina aba4227
better typing and refactor logic into a list of comrpehension
hanouticelina File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1153,6 +1153,98 @@ def test_prepare_payload(self): | |
"model": "test-provider-id", | ||
} | ||
|
||
@pytest.mark.parametrize( | ||
"raw_messages, expected_messages", | ||
[ | ||
( | ||
[ | ||
{ | ||
"role": "assistant", | ||
"content": "", | ||
"tool_calls": None, | ||
} | ||
], | ||
[ | ||
{ | ||
"role": "assistant", | ||
"content": "", | ||
} | ||
], | ||
), | ||
( | ||
[ | ||
{ | ||
"role": "assistant", | ||
"content": None, | ||
"tool_calls": [ | ||
{ | ||
"id": "call_1", | ||
"type": "function", | ||
"function": { | ||
"name": "get_current_weather", | ||
"arguments": '{"location": "San Francisco, CA", "unit": "celsius"}', | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
"role": "tool", | ||
"content": "pong", | ||
"tool_call_id": "abc123", | ||
"name": "dummy_tool", | ||
"tool_calls": None, | ||
}, | ||
], | ||
[ | ||
{ | ||
"role": "assistant", | ||
"tool_calls": [ | ||
{ | ||
"id": "call_1", | ||
"type": "function", | ||
"function": { | ||
"name": "get_current_weather", | ||
"arguments": '{"location": "San Francisco, CA", "unit": "celsius"}', | ||
}, | ||
} | ||
], | ||
}, | ||
{ | ||
"role": "tool", | ||
"content": "pong", | ||
"tool_call_id": "abc123", | ||
"name": "dummy_tool", | ||
}, | ||
], | ||
), | ||
], | ||
) | ||
def test_prepare_payload_filters_messages(self, raw_messages, expected_messages): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks for adding this :) |
||
helper = BaseConversationalTask(provider="test-provider", base_url="https://api.test.com") | ||
|
||
parameters = { | ||
"temperature": 0.2, | ||
"max_tokens": None, | ||
"top_p": None, | ||
} | ||
|
||
payload = helper._prepare_payload_as_dict( | ||
inputs=raw_messages, | ||
parameters=parameters, | ||
provider_mapping_info=InferenceProviderMapping( | ||
provider="test-provider", | ||
hf_model_id="test-model", | ||
providerId="test-provider-id", | ||
task="conversational", | ||
status="live", | ||
), | ||
) | ||
|
||
assert payload["messages"] == expected_messages | ||
assert payload["temperature"] == 0.2 | ||
assert "max_tokens" not in payload | ||
assert "top_p" not in payload | ||
|
||
|
||
class TestBaseTextGenerationTask: | ||
def test_prepare_route(self): | ||
|
@@ -1252,6 +1344,14 @@ def test_recursive_merge(dict1: Dict, dict2: Dict, expected: Dict): | |
{"a": [0, 1, None]}, # do not remove None in lists | ||
{"a": [0, 1, None]}, | ||
), | ||
# dicts inside list are cleaned, list level None kept | ||
({"a": [{"x": None, "y": 1}, None]}, {"a": [{"y": 1}, None]}), | ||
# remove every None that is the value of a dict key | ||
( | ||
[None, {"x": None, "y": 5}, [None, 6]], | ||
[None, {"y": 5}, [None, 6]], | ||
), | ||
({"a": [None, {"x": None}]}, {"a": [None]}), | ||
hanouticelina marked this conversation as resolved.
Show resolved
Hide resolved
|
||
], | ||
) | ||
def test_filter_none(data: Dict, expected: Dict): | ||
|
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.
Uh oh!
There was an error while loading. Please reload this page.