fix(review): add DeepSeek Zen free reviewer - #655
Merged
Conversation
📝 WalkthroughWalkthroughOpenCode 무료 모델 카탈로그에 DeepSeek V4 Flash Free를 추가하고, 공개 저장소에서 두 무료 모델을 후보로 선택하도록 변경했다. 관련 워크플로 및 생성 설정 검증 테스트도 후보 조합에 맞게 확장했다. ChangesOpenCode 무료 모델 라우팅
Estimated code review effort: 3 (Moderate) | ~20 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Contributor
Author
|
Controlled bootstrap merge audit:
|
seonghobae
pushed a commit
that referenced
this pull request
Jul 30, 2026
Widen the anonymous OpenCode Zen free reviewer pool with three additional verified models so a single model's rate-limit, delisting, or transient outage no longer exhausts the reviewer and blocks org PRs: - opencode-free/mimo-v2.5-free (MiMo-V2.5 Free) - opencode-free/laguna-s-2.1-free (Laguna S 2.1 Free) - opencode-free/ling-3.0-flash-free (Ling-3.0-flash Free) Complements #655/#659 (nemotron-3-ultra-free, deepseek-v4-flash-free): the public-repo prefix now offers six free Zen candidates before the keyed providers. Slugs verified against OpenCode's published Zen catalog (https://opencode.ai/zen/v1). Declared as simple tool-calling models matching the existing merged pattern (no reasoning claim), so the reasoning-effort guard accepts them; gated behind the existing is_private == 'false' public-repository guard so anonymous Zen never sees private code. Contract test updated to pin the expanded candidate list. Verification: - python3 -m pytest tests/test_opencode_agent_contract.py tests/test_opencode_model_pool_runner.py tests/test_assert_opencode_reasoning_effort.py tests/test_opencode_workflow_shell_syntax.py -q -> 71 passed - jq -n over the generated config block: rc 0 - assert_opencode_reasoning_effort.validate_candidate accepts all three - YAML safe_load parses the workflow Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Msz8Dni5zRaqPatNCmZJZ8
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.
Summary
Validation
pytest -q— 674 passedpytest -q tests/test_opencode_agent_contract.py— 37 passedruff check tests/test_opencode_agent_contract.pygit diff --checkReview evidence
tests/test_opencode_agent_contract.py:94-121asserts the public-only expression and exact DeepSeek-then-North order.tests/test_opencode_agent_contract.py:141-154parses the generated provider config and asserts both models use tool calls without forcedresponse_format..github/workflows/opencode-review-dispatch.yml:3720includes the free prefix only whenis_private == false.Closes #648