v0.19.1: Fix HuggingFace path to nadirclaw/cascade-verifier-v1#62
Merged
Conversation
Weights published at https://huggingface.co/nadirclaw/cascade-verifier-v1 (not NadirRouter as v0.19.0 assumed). This patch updates the default DEFAULT_MODEL_ID, the n2_trained profile, schema defaults, README, and tests to match the actual published location. No API change. `pip install nadirclaw[trained]` now works end-to-end. Repo: https://github.com/NadirRouter/NadirClaw Service: https://getnadir.com
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
v0.19.0 shipped with the
TrainedVerifierhardcoded to load weights fromNadirRouter/cascade-verifier-v1, but the weights are actually published atnadirclaw/cascade-verifier-v1under the existingnadirclawHuggingFace org. As shipped,pip install nadirclaw[trained]+n2_trainedprofile would 404 on first call.This patch updates every reference (default constant, schema default, n2_trained YAML, README, tests) to the actual published location. No API change.
pip install nadirclaw[trained]now works end-to-end.Files touched
pyproject.toml(comment) + version bump innadirclaw/__init__.py(0.19.0 → 0.19.1)README.md(heading + HF link)nadirclaw/trained_verifier.py(DEFAULT_MODEL_ID+ docstrings)nadirclaw/cascade.py(comment)nadirclaw/tier_config/schema.py(default value + comment)nadirclaw/tier_config/profiles/n2_trained.yaml(default + comment)tests/test_trained_verifier.py(assertions)Test plan
pytest tests/test_trained_verifier.py -v— 8 passed, 1 skipped (heavy-weight gated test)grep -rn "NadirRouter/cascade-verifier"— zero matchesWhy this matters
This closes the reproducibility commitment in the RouterArena PR #112 submission (arena_F 0.7358). With the corrected path, anyone can reproduce the score end-to-end with the open-source router.