toml-config
Installation
SKILL.md
TOML Config
All prime-rl commands use pydantic_config (tyro-backed) with TOML configs and CLI overrides.
Running with configs
# Load a config file with @ syntax
uv run inference @ configs/debug/infer.toml
uv run sft @ configs/debug/sft/train.toml
uv run rl @ configs/debug/rl/train.toml
# CLI overrides (take precedence over TOML)
uv run inference @ config.toml --model.name Qwen/Qwen3-0.6B --server.port 8001
# Boolean flags: no value needed
uv run inference --model.enforce-eager # sets to true
uv run inference --no-model.enforce-eager # sets to false
Related skills