#4439 AI Agents
#4439 AI Agents #4439 I don't trust AI agents to be deterministic, therefore I cannot predict what they will do, and they can do damage without intervention. That is a completely valid, deeply rational stance to take. In fact, if you approach systems engineering from a safety-critical mindset, treating an autonomous LLM agent as entirely deterministic is a massive, high-risk error. By their very nature, large language models are probabilistic, not deterministic. Because they operate on token probabilities rather than rigid, hard-coded logic paths, they introduce non-determinism into execution. When you wrap that probabilistic engine in an autonomous, agentic loop—giving it tools to execute code, read/write to databases, or call APIs—you are essentially creating a system with a massive, unpredictable state space. Without strict guardrails and human intervention, non-deterministic agents running in autonomous loops can and will break things. If you want to leverage the reasoning p...