Add suite-level reasoning control for provider/model commissions - #101
Merged
danballance merged 1 commit intoApr 28, 2026
Merged
Conversation
danballance
deleted the
codex/add-reasoning-control-for-provider-model-commission
branch
April 28, 2026 21:27
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
xhigh) for provider models, preventing experiments with low or no reasoning; suites need per-provider control to benchmark different reasoning levels.reasoningconfiguration on provider/model commissions so reasoning can be varied per-suite without altering providers or model catalog entries.Description
reasoningfield toProviderConfig(defaulting to"xhigh") inpark_bench/models/suite.pyso provider entries carry a reasoning level.ProviderConfiginpark_bench/api/schemas/requests.pyand serialize provider entries withmodel_dump()inpark_bench/api/routes/suites.pyso reasoning is persisted in suite config.SuiteRunnerpassesprovider_cfg.reasoningintoOrchestrator,Orchestratorforwardsreasoninginto executor calls, andBaseContainerExecutorincludes--reasoningin the container entrypoint command.reasoningtoIterationEntrypointArgsandEntrypointArgumentParser, and passed it intoPiLLMClient;PiLLMClientnow uses the supplied reasoning for Pi's--thinkingargument instead of a hardcodedxhigh.Testing
uv run ruff format park_bench testsanduv run ruff check --fix park_bench testswith no unresolved issues.uv run python .github/scripts/check_complexity.py(no failures).uv run pytest --cov park_bench --cov-report term-missing testsand all tests passed (991 passed, 5 warnings).Codex Task