musician
musician
¶
Baton musician — single-attempt sheet execution.
The musician is the bridge between the baton's dispatch decision and the backend's execution. It plays ONE attempt, runs validations, records outcomes, and reports back via SheetAttemptResult into the baton's inbox.
The musician NEVER retries. It NEVER decides completion mode, escalation, or rate limit recovery. It reports; the conductor (baton) decides.
The 6-step flow
- Build prompt (render template + inject context)
- Configure backend (timeout, working directory)
- Play:
backend.execute(prompt, timeout_seconds=sheet.timeout) - Listen: run validations on output (if execution succeeded)
- Record: capture output with credential redaction
- Report: put
SheetAttemptResultinto baton inbox
Design decisions
- The musician is a free function, not a class. No state to manage.
- Exceptions from the backend are caught and reported, never re-raised. The baton must never crash because a backend threw.
- Credential redaction happens before the result is put in the inbox. No unscanned output ever reaches the baton.
- F-018 contract: when execution succeeds with no validations,
validation_pass_rateis set to 100.0. The default 0.0 would cause unnecessary retries. - F-104: Full Jinja2 prompt rendering with preamble, variable expansion, prelude/cadenza injection, and validation requirements. The musician renders the template at execution time because cross-sheet context only exists after earlier sheets complete.
See: docs/plans/2026-03-26-baton-design.md — Single-Attempt Musician
Attributes¶
Classes¶
Functions¶
sheet_task
async
¶
sheet_task(*, job_id, sheet, backend, attempt_context, inbox, total_sheets=1, total_movements=1, rendered_prompt=None, preamble=None, cost_per_1k_input=None, cost_per_1k_output=None, instrument_override=None)
Execute a single sheet attempt and report the result.
This is the musician's entire job. Play once, report in full detail. The conductor (baton) decides what happens next.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
job_id
|
str
|
The job this sheet belongs to. |
required |
sheet
|
Sheet
|
The sheet to execute (prompt, validations, timeout, etc.). |
required |
backend
|
Backend
|
The backend to execute through. |
required |
attempt_context
|
AttemptContext
|
Context from the conductor (attempt number, mode, etc.). |
required |
inbox
|
Queue[SheetAttemptResult]
|
The baton's event inbox to report results to. |
required |
total_sheets
|
int
|
Total concrete sheets in the job (for template variables). |
1
|
total_movements
|
int
|
Total movements in the job (for template variables). |
1
|
rendered_prompt
|
str | None
|
Optional pre-rendered prompt from PromptRenderer. When provided, the musician uses this directly instead of calling _build_prompt(). This enables the full 9-layer prompt assembly pipeline including spec fragments, learned patterns, and failure history. |
None
|
preamble
|
str | None
|
Optional pre-built preamble. Set on the backend via set_preamble() before execution. Only used when rendered_prompt is also provided (the PromptRenderer separates them). |
None
|
cost_per_1k_input
|
float | None
|
Cost per 1000 input tokens (USD) from the instrument profile's ModelCapacity. None uses hardcoded fallback. |
None
|
cost_per_1k_output
|
float | None
|
Cost per 1000 output tokens (USD) from the instrument profile's ModelCapacity. None uses hardcoded fallback. |
None
|
instrument_override
|
str | None
|
When set, used as the instrument_name in the SheetAttemptResult instead of sheet.instrument_name. Required after instrument fallback — the Sheet entity keeps the original instrument but the baton's SheetExecutionState tracks the fallback instrument. Without this, attempt results credit the wrong instrument for success/failure tracking. |
None
|
Never raises — all exceptions are caught and reported via the inbox.
Source code in src/marianne/daemon/baton/musician.py
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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | |