Talk to an LLM from code
Debug missing choices array treated as empty success in the CLI LLM summarizer
Page 5 reproduces and repairs the characteristic failure of the command-line LLM summarizer: missing choices array treated as empty success, or retries on 400.
1Learn the idea
Read
Reproduce before you repair
Do not start with a speculative fix for the CLI LLM summarizer. Force the failure on purpose, save the before output, then change one cause at a time. Retries are allowed only for transient conditions—not for bad input that will fail forever on llm-api-hello.
Read
Force the failure
async function retry(call){for(let n=0;n<3;n++){try{return await call()}catch(e){if(e.status!==429||n===2)throw e;}}}
let n=0; retry(async()=>{if(n++<1)throw Object.assign(new Error('rate'),{status:429});return 'ok'}).then(console.log);
Expected evidence: ok after one simulated 429. If you cannot reproduce on demand, you do not yet control the failure mode for llm-api-hello.
Read
Repair with a reviewable diff
After repair, rerun the exact reproduction command. Keep the failing fixture as a regression seed for the observability page. For the command-line LLM summarizer, remember the claim you are restoring: fake transport returns a summary string; real adapter is isolated behind env credentials.
Read
Lab notebook: reproduce on command
Store a one-command reproduction for: missing choices array treated as empty success, or retries on 400. The command should use system+user job object for an embeddings definition sentence or a minimal mutant of it. Paste the failing output into notes/failure-before.txt (or your shell scrollback as copied text). After the fix, paste notes/failure-after.txt and keep both.
Retries belong only on transient faults. If the failure is bad input, a bad allowlist, or a logic bug in the CLI LLM summarizer, retrying will amplify cost without repairing trust around turn one user passage into a bounded one-sentence summary via an HTTP-shaped client.
Read
Worked judgment
Classify the failure as prevent, detect, contain, or recover—using this lab’s language, not a generic poster. For llm-api-hello, the first fix should usually be detect+prevent at the boundary, because missing choices array treated as empty success, or retries on 400 is cheaper to stop early than to explain in production prose.
Read
Why this stage matters for the CLI LLM summarizer
At the debugging stage for llm-api-hello, the job is narrower than finishing a product demo. You are creating one progressive evidence piece about system+user job object for an embeddings definition sentence that later pages inherit without redefining success. Keep that fixture small enough to inspect by hand, keep outputs copy-pasteable as text, and refuse to narrate this baseline as if it were a production SLA: offline fake transport producing a fixed summary.
For this page specifically, success looks like before/after evidence for the characteristic failure while still centering the user decision to turn one user passage into a bounded one-sentence summary via an HTTP-shaped client. If you cannot point to a file, command, or assertion that proves that for the CLI LLM summarizer, stay on this page instead of advancing.
Go deeper
Before you start
Why this matters
Describe the smallest fixture that triggers missing choices array treated as empty success. Predict the first visible symptom (exception, wrong label, silent empty success). You will compare that prediction with the reproduction below.
In the wild
See how this idea shows up as a product and a company — then come back to the lesson. Skills transfer across vendors.
Related lessons
Check your understanding
Page assessment
Answer from memory. Completion is saved from this evidence, not from opening the next page.
All responses are required.