Flags¶
This page lists the different flags/env vars you can pass to RAITAP.
Each row gives the equivalent surface across the CLI, the Python API (raitap.run(...)
kwargs), and the environment. The accepted truthy value for every env var
is the literal string "1"; any other value (including unset) is no
consent.
Hydra's own flags (--config-name, --config-dir, --multirun, --help,
--hydra-help) are not listed here, see Some advanced Hydra features.
General CLI flags¶
CLI |
Python API |
Env var |
Description |
|---|---|---|---|
|
— |
— |
Run the bundled |
|
|
— |
Print the installed RAITAP version and exit. Short-circuits before deps inference. |
Dependency-management flags¶
CLI |
Python API |
Env var |
Description |
|---|---|---|---|
|
— |
— |
Print the inferred extras for the composed config and exit without installing or running. |
|
— |
— |
Install the inferred extras and exit before the pipeline runs. |
|
|
— |
Skip dep inference entirely; caller is responsible for installing the right extras. |
|
|
— |
Consent to |
|
|
— |
Consent to bare- |
Safety-consent flags¶
CLI |
Python API |
Env var |
Description |
|---|---|---|---|
|
|
|
Consent to importing a user-supplied preprocessing |
|
|
|
Acknowledge running with both |
|
|
|
Consent to loading legacy checkpoints with |
Setting env vars¶
POSIX shell:
export RAITAP_ALLOW_PREPROCESSING_EXEC=1
uv run raitap --config-name assessment
PowerShell:
$env:RAITAP_ALLOW_PREPROCESSING_EXEC = "1"
uv run raitap --config-name assessment
GitHub Actions:
- run: uv run raitap --config-name assessment
env:
RAITAP_ALLOW_PREPROCESSING_EXEC: "1"