MODULE 7 DEEP DIVE · CONTAINERS FOR GENAI & AGENTIC AI
The four knobs nobody explained
crew.py ran end to end in the lab — this deck opens it up and asks why
Gourav Shah · School of DevOps & AI · Deep Dive (Part 2)
M7-DD·01
Low temperature plays the melody exactly as written, every time
Low temperature: reads the score exactly. High: improvises, sometimes off-key.
M7-DD·02
Three of four agents pin temperature=0 on purpose
crew.py's four llm() call sites, read directly — one exception stands out
M7-DD·03
Raising a classifier's temperature removes repeatability, not adds creativity
More temperature on a classifier isn't more capable — it's less repeatable
M7-DD·04
Someone who never stops re-googling the same question
No rule saying "three tries" — the loop can keep going indefinitely
M7-DD·05
A ReAct loop can cycle back to "reason" again — until something stops it
The reason-call-observe-decide loop this crew deliberately isn't
M7-DD·06
This crew costs exactly 5 model calls, always
retrieve() runs once — run() has no while loop and no retry branch
M7-DD·07
A relay race passes the baton, not the runner's whole race so far
Each runner gets only the baton — not the whole race behind them
M7-DD·08
Triage's classification is printed for you — and thrown away by the code
retrieve() uses the raw incident string — never Triage's classification
M7-DD·09
Fixed order sidesteps two failure modes a dynamic router doesn't
A hard-coded run() order sidesteps both failure modes below
M7-DD·10
Two gates, two Python string checks, zero follow-up prompts
Two deterministic string checks — not a second model policing the first
M7-DD·11
Gate 1 sits after the tool call, Gate 2 sits at final-answer time
Where the two real gates physically sit in the pipeline
M7-DD·12
No debug flag — read the profile file and the f-string instead
No DEBUG flag — read the profile file plus run()'s f-string instead
M7-DD·13
Same incident, three knob variants, always run one at a time
Sequential only — parallel runs would hide a knob change inside ordinary noise
M7-DD·14
The outcome held at 0.9 — the prose didn't
Three real repeats at temp 0.9 — the outcome held, the prose didn't
M7-DD·15
Bypass one gate and the crew launders a fabricated command through two agents
Gate bypassed: wrong runbook, a fabricated command, approved anyway
M7-DD·16
The gate pins the marker — remove it and the marker stops being pinned
Wrong runbook repeats every run — OUTCOME stable only while gate holds
M7-DD·17
MODULE 7 DEEP DIVE · TAKEAWAYS
Pin the gates, bound the loop, check what really crosses each hop
Next: apply these levers to a real crew. · Gourav Shah · School of DevOps & AI
M7-DD·18