Add slime skills for rollout, reward, filter, eval config, and CI#1646
Add slime skills for rollout, reward, filter, eval config, and CI#1646yitianlian wants to merge 6 commits intoTHUDM:mainfrom
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e5c2fa5442
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ```bash | ||
| rg --files tests | rg 'reward|rollout|quick_start' | ||
| pytest "$(rg --files tests | rg 'reward|rollout|quick_start' | head -n 1)" -vv | ||
| python -m slime.utils.debug_utils.replay_reward_fn --help |
There was a problem hiding this comment.
Replace missing replay_reward_fn validation command
The skill asks users to run python -m slime.utils.debug_utils.replay_reward_fn --help, but that module does not exist in this repository (checked with rg --files slime | rg replay_reward_fn), so this validation step fails with ModuleNotFoundError and blocks the documented reward-function workflow. Please update this to an existing utility or remove the step.
Useful? React with 👍 / 👎.
Add skills