- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01SoZMfWRSGnf6FZX2Ar9rQ2
Keep the model pin on a trial the timeout killed
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
packages/coder-effectiveness/README.md -
added
packages/coder-effectiveness/fixtures/timed-out-lane/config.json -
added
packages/coder-effectiveness/fixtures/timed-out-lane/result.json -
added
packages/coder-effectiveness/fixtures/timed-out-lane/timed-out__c0c0c0c0/config.json -
added
packages/coder-effectiveness/fixtures/timed-out-lane/timed-out__c0c0c0c0/result.json -
modified
packages/coder-effectiveness/src/effectiveness.test.ts -
modified
packages/coder-effectiveness/src/harbor-job.ts
Diff
7 files changed, +112 -1
packages/coder-effectiveness/README.md modified +1
@@ -277,6 +277,7 @@ called, no Docker image runs, and no clock is read.
| 277 | 277 |
|
| 278 | 278 |
|
| 279 | 279 |
|
| 280 |
|
|
| 280 | 281 |
|
| 281 | 282 |
|
| 282 | 283 |
|
packages/coder-effectiveness/fixtures/timed-out-lane/config.json added +3
packages/coder-effectiveness/fixtures/timed-out-lane/result.json added +6
packages/coder-effectiveness/fixtures/timed-out-lane/timed-out__c0c0c0c0/config.json added +10
packages/coder-effectiveness/fixtures/timed-out-lane/timed-out__c0c0c0c0/result.json added +17
@@ -0,0 +1,17 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
packages/coder-effectiveness/src/effectiveness.test.ts modified +37
@@ -210,3 +210,40 @@ describe("cost per accepted outcome", () => {
| 210 | 210 |
|
| 211 | 211 |
|
| 212 | 212 |
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 238 |
|
|
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
|
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
packages/coder-effectiveness/src/harbor-job.ts modified +38 -1
@@ -114,7 +114,9 @@ const readTrial = (dirName: string, trialDir: string, trialResult: unknown): Tri
| 114 | 114 |
|
| 115 | 115 |
|
| 116 | 116 |
|
| 117 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 118 | 120 |
|
| 119 | 121 |
|
| 120 | 122 |
|
@@ -126,6 +128,41 @@ const readTrial = (dirName: string, trialDir: string, trialResult: unknown): Tri
| 126 | 128 |
|
| 127 | 129 |
|
| 128 | 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 |
|
|
| 129 | 166 |
|
| 130 | 167 |
|
| 131 | 168 |
|