run
run
¶
Run command for Marianne CLI.
This module implements the mzt run command which routes scores
through a running conductor (mzt start). Direct execution is not
supported — a running conductor is required (like docker requires dockerd).
The only exception is --dry-run, which validates and displays the
execution plan without executing anything (no conductor needed).
Classes¶
Functions¶
run
¶
run(config_file=Argument(..., help='Path to YAML score configuration file', exists=True, readable=True), dry_run=Option(False, '--dry-run', '-n', help='Show what would be executed without running'), start_sheet=Option(None, '--start-sheet', '-s', help='Override starting sheet number'), workspace=Option(None, '--workspace', '-w', help="Override workspace directory. Creates the directory if it doesn't exist. Takes precedence over the workspace defined in the YAML config."), json_output=Option(False, '--json', '-j', help='Output result as JSON for machine parsing'), escalation=Option(False, '--escalation', '-e', help='Enable human-in-the-loop escalation for low-confidence sheets'), self_healing=Option(False, '--self-healing', '-H', help='Enable automatic diagnosis and remediation when retries are exhausted'), yes=Option(False, '--yes', '-y', help='Auto-confirm suggested fixes when using --self-healing'), fresh=Option(False, '--fresh', help='Delete existing state before running, ensuring a fresh start. Use this for self-chaining scores or when you want to re-run a completed score from scratch without resuming from previous state.'))
Run a score from a YAML configuration file.
Source code in src/marianne/cli/commands/run.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | |