-
Notifications
You must be signed in to change notification settings - Fork 434
[DRAFT] client type config #1846
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
Closed
Closed
Changes from all commits
Commits
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
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
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
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 |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| from prime_rl.orchestrator.config import EvalSamplingConfig, SamplingConfig | ||
| from prime_rl.orchestrator.eval_utils import get_eval_sampling_args | ||
| from prime_rl.orchestrator.utils import get_sampling_args | ||
| from prime_rl.utils.config import ClientConfig | ||
|
|
||
|
|
||
| def test_get_sampling_args_enforces_token_outputs_for_non_token_client(): | ||
| sampling_config = SamplingConfig( | ||
| min_tokens=4, | ||
| repetition_penalty=1.1, | ||
| extra_body={"custom_flag": True}, | ||
| ) | ||
| client_config = ClientConfig(client_type="openai_chat_completions") | ||
|
|
||
| sampling_args = get_sampling_args(sampling_config, temperature=0.7, client_config=client_config) | ||
|
|
||
| assert sampling_args["logprobs"] is True | ||
| assert sampling_args["extra_body"]["return_token_ids"] is True | ||
| assert sampling_args["extra_body"]["custom_flag"] is True | ||
| assert sampling_args["temperature"] == 0.7 | ||
|
|
||
|
|
||
| def test_get_sampling_args_applies_client_overrides(): | ||
| sampling_config = SamplingConfig(extra_body={"top_k": 32, "custom": "from-sampling"}) | ||
| client_config = ClientConfig( | ||
| sampling_overrides={"seed": 123, "logprobs": False}, | ||
| extra_body_overrides={"top_k": 8, "return_token_ids": False, "trace": "enabled"}, | ||
| ) | ||
|
|
||
| sampling_args = get_sampling_args(sampling_config, temperature=1.0, client_config=client_config) | ||
|
|
||
| assert sampling_args["seed"] == 123 | ||
| assert sampling_args["extra_body"]["top_k"] == 8 | ||
| assert sampling_args["extra_body"]["trace"] == "enabled" | ||
| assert sampling_args["extra_body"]["custom"] == "from-sampling" | ||
| assert sampling_args["logprobs"] is True | ||
| assert sampling_args["extra_body"]["return_token_ids"] is True | ||
|
|
||
|
|
||
| def test_get_eval_sampling_args_applies_client_overrides(): | ||
| eval_sampling_config = EvalSamplingConfig( | ||
| top_k=4, | ||
| extra_body={"trace": "from-eval"}, | ||
| ) | ||
| client_config = ClientConfig( | ||
| sampling_overrides={"seed": 99}, | ||
| extra_body_overrides={"trace": "from-client", "return_token_ids": True}, | ||
| ) | ||
|
|
||
| sampling_args = get_eval_sampling_args(eval_sampling_config, client_config) | ||
|
|
||
| assert sampling_args["seed"] == 99 | ||
| assert sampling_args["extra_body"]["top_k"] == 4 | ||
| assert sampling_args["extra_body"]["trace"] == "from-client" | ||
| assert sampling_args["extra_body"]["return_token_ids"] is True |
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
Oops, something went wrong.
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.
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.
Missing CHANGELOG entry for new config fields
Low Severity
This PR adds three new config fields to
ClientConfiginsrc/prime_rl/utils/config.py—client_type,sampling_overrides, andextra_body_overrides— but the diff does not include a correspondingCHANGELOG.mdupdate. Per project rules, any PR that modifies configuration structures (including added fields) insrc/prime_rl/utils/config.pymust update the changelog.Triggered by project rule: BugBot Instructions