Uh oh!
There was an error while loading. Please reload this page.
evals: add eval suite for cuopt-install skill - #1205
Merged
rapids-bot[bot] merged 3 commits intoMay 12, 2026
Conversation
Add 15 behavior-style evals covering required questions, Python/C/server installs, CUDA suffix matching, verification, the no-auto-install rule, GPU compute capability, and the redirect to cuopt-developer for from-source builds. Matches the question/expected_behavior style used by cuopt-developer. Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
cuopt-cuXX declares libcuopt-cuXX as a runtime dependency (see python/cuopt/pyproject.toml), so installing the Python package also installs the C headers and shared library. The skill previously stated the two were strictly separate installables. Update the three relevant lines in SKILL.md and the corresponding install-005 eval to reflect that the C API is available after a Python install, while libcuopt alone still does not provide the Python bindings. Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
The package table and accompanying note implied the Python and C packages were independent installs. Reflect that cuopt declares libcuopt as a runtime dependency, so a Python install also provides the C library; only the reverse (libcuopt alone, no Python) is a true separate install. Mirrors the SKILL.md fix in cuopt-install. Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
tmckayus
approved these changes
May 12, 2026
ramakrishnap-nv
commented
May 12, 2026
CollaboratorAuthor
/merge |
Uh oh!
There was an error while loading. Please reload this page.
chris-maes pushed a commit
to chris-maes/cuopt
that referenced
this pull request
May 18, 2026
## Summary - Adds `skills/cuopt-install/evals/evals.json` with 15 behavior-style evals for the `cuopt-install` skill. Coverage: required questions, Python/C/server install (pip/conda/Docker), CUDA suffix matching, verification, the mandatory no-auto-install rule, GPU Compute Capability requirements, and the redirect to `cuopt-developer` for from-source builds. - Corrects a factual error in `cuopt-install/SKILL.md` (3 lines) and `cuopt-user-rules/SKILL.md` (table + note): `cuopt-cuXX` declares `libcuopt-cuXX` as a runtime dependency (see `python/cuopt/pyproject.toml:26`), so the C library and headers are already installed alongside the Python package. The skills previously stated the Python and C packages were strictly separate; the reverse (`libcuopt` alone, no Python) is the only true standalone case. `cuopt-install` was the only user-facing skill without an evals directory; this closes that gap. `cuopt-user-rules` has no evals (rules skill, not API), so no eval changes needed there. Style of the new evals matches `cuopt-developer/evals/evals.json` (question + ground-truth narrative + `expected_behavior` list). ## Test plan - [ ] JSON validates (`python -m json.tool skills/cuopt-install/evals/evals.json`) - [ ] Eval IDs are unique within the file - [ ] Eval harness picks up the new file - [ ] Spot-check install-005 against the corrected SKILL.md / user-rules guidance Authors: - Ramakrishnap (https://github.com/rgsl888prabhu) Approvers: - Trevor McKay (https://github.com/tmckayus) URL: NVIDIA#1205
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 freeto 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
skills/cuopt-install/evals/evals.jsonwith 15 behavior-style evals for thecuopt-installskill. Coverage: required questions, Python/C/server install (pip/conda/Docker), CUDA suffix matching, verification, the mandatory no-auto-install rule, GPU Compute Capability requirements, and the redirect tocuopt-developerfor from-source builds.cuopt-install/SKILL.md(3 lines) andcuopt-user-rules/SKILL.md(table + note):cuopt-cuXXdeclareslibcuopt-cuXXas a runtime dependency (seepython/cuopt/pyproject.toml:26), so the C library and headers are already installed alongside the Python package. The skills previously stated the Python and C packages were strictly separate; the reverse (libcuoptalone, no Python) is the only true standalone case.cuopt-installwas the only user-facing skill without an evals directory; this closes that gap.cuopt-user-ruleshas no evals (rules skill, not API), so no eval changes needed there.Style of the new evals matches
cuopt-developer/evals/evals.json(question + ground-truth narrative +expected_behaviorlist).Test plan
python -m json.tool skills/cuopt-install/evals/evals.json)