Global Options
These options are available for the mainautopilot command:
Display the version number and exit.Short form:
-VExample:--help
Show help message with available commands and exit.Example:
Run Command Arguments
All arguments for theautopilot run command.
Required Arguments
Path to dataset file (CSV or Parquet format).Short form:
-dValidation:- File must exist
- File must be readable
- Must be a file (not a directory)
.csv- Comma-separated values.parquet- Apache Parquet
Name of the target column for prediction.Short form:
-tValidation:- Column must exist in the dataset
- Column name is case-sensitive
Type of machine learning task.Allowed values:
classification- Categorical target variableregression- Continuous target variable
Optional Arguments
Path to constraints file (Markdown format).Short form: See Constraints for file format details.
-cDefault: NoneValidation:- File must exist if specified
- File must be readable
- Must be a file (not a directory)
Maximum number of experiment iterations.Short form:
-nDefault: 20Range: 1-100Validation:- Must be at least 1
- Cannot exceed 100
Time budget in seconds for the experiment session.Default: Common durations:
3600 (1 hour)Range: 60-86400 (1 minute to 24 hours)Validation:- Minimum: 60 seconds (1 minute)
- Maximum: 86400 seconds (24 hours)
- 30 minutes:
1800 - 1 hour:
3600 - 2 hours:
7200 - 4 hours:
14400 - 8 hours:
28800 - 12 hours:
43200 - 24 hours:
86400
Directory where results will be saved.Short form:
-oDefault: Auto-generated timestamped directory in ./outputs/Auto-generated format: ./outputs/experiment_YYYYMMDD_HHMMSS/Examples:The directory will be created if it doesn’t exist.
Show detailed Gemini reasoning and decision-making process.Short form: Verbose output includes:
-vDefault: falseExamples:- Gemini’s reasoning for each decision
- Detailed hypothesis generation process
- Full experiment planning steps
- Extended error messages and stack traces
Resume from a previously saved state file.Default:
NoneValidation:- File must exist
- File must be readable
- Must be a valid state file (JSON format)
Argument Combinations
Quick Start
Minimal required arguments:Production Run
All common arguments for a production scenario:Short Forms
Using all short-form arguments:Help Commands
Get help at any level:Terminal Output Example
When you run a command, you’ll see output like this:See Also
- Run Command - Detailed run command documentation
- Constraints - Constraint file format
- Configuration - Environment and API setup