| This makes a lot of sense — especially the “LLMs as nondeterministic services” framing. I agree that versioned prompts, schema validators, regression evals, and contract tests are essential if you're shipping LLM-powered systems. What I’m wrestling with is a slightly different failure mode though.
Even if:
prompts are versioned
outputs conform to JSON schema
contract tests pass
…you can still end up with semantic drift inside the application model itself. Example:
Entity field renamed
Metric still references old semantic meaning
Relationship cardinality changes
Permission scope shifts
All technically valid JSON.
All passing structural validation. But the meaning of the system changes in ways that silently break invariants. So the question becomes:
Should lifecycle control live only at the “LLM output quality” layer (prompts, evals, CI), or does the runtime itself need semantic version awareness and invariant enforcement? In other words:
Even if the AI is perfectly guarded, do we still need an application-level planner that understands entities, metrics, relationships, and permissions as first-class concepts — and refuses inconsistent evolution?
I am definitively into this. Curious how you think about that boundary. |