Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions eval_protocol/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,26 @@ def parse_args(args=None):
rft_parser.add_argument("--yes", "-y", action="store_true", help="Non-interactive mode")
rft_parser.add_argument("--dry-run", action="store_true", help="Print planned REST calls without sending")
rft_parser.add_argument("--force", action="store_true", help="Overwrite existing evaluator with the same ID")
rft_parser.add_argument(
"--skip-validation",
action="store_true",
help="Skip local dataset and evaluator validation before creating the RFT job",
)
rft_parser.add_argument(
"--ignore-docker",
action="store_true",
help="Ignore Dockerfile even if present; run pytest on host during evaluator validation",
)
rft_parser.add_argument(
"--docker-build-extra",
default="",
help="Extra flags to pass to 'docker build' when validating evaluator (quoted string, e.g. \"--no-cache --pull --progress=plain\")",
)
rft_parser.add_argument(
"--docker-run-extra",
default="",
help="Extra flags to pass to 'docker run' when validating evaluator (quoted string, e.g. \"--env-file .env --memory=8g\")",
)

# Local test command
local_test_parser = subparsers.add_parser(
Expand Down
Loading
Loading