Usage
CLI Options
| Option | Description | Default |
|---|---|---|
-p, --problem | Problem description (inline) | - |
-f, --problem-file | File with problem description | - |
-i, --iterations | Max iterations | 10 |
-m, --mode | Config mode | GENERIC |
-d, --coding-agent | Coding agent | From config |
--main-file | Entry point file | main.py |
--language | Programming language | python |
--timeout | Execution timeout (seconds) | 300 |
--evaluator | Evaluator type | no_score |
--stop-condition | Stop condition type | never |
--context | Additional context/tips | - |
Evaluators
- no_score
- regex_pattern
- llm_judge
No scoring, always returns 0. Useful for code generation without evaluation.
Stop Conditions
- never
- threshold
- plateau
- composite
Run all iterations.
Configuration Modes
GENERIC
Standard configuration for most problems:TREE_SEARCH
For complex problems requiring exploration:Example: Scored Problem
Createproblem.txt: