01. The Autonomy Spectrum
There is a spectrum from workflows to autonomous agents. At one end, workflows have predetermined code paths designed to operate in a certain order. At the other end, agents are dynamic and define their own processes and tool usage. Workflows give predictability. Agents give flexibility for open ended problems. Many real systems sit somewhere in between. Consider a case-study platform. Most of its fleet uses fixed single shot classification and enrichment workflows. These are reliable and efficient. Model directed loops are reserved for the few places they earn their cost. Two examples are open ended search and judging hard low confidence cases. In open ended search, the platform uses a cost aware tool hierarchy. The glob tool returns only paths, capped at three hundred results. The grep tool returns file and line matches, capped at two hundred. The read tool returns full files with line numbers, capped at three hundred lines. This balances cost and depth. For hard low confidence cases, an agent decides the next best action. This flexibility is worth the extra complexity. The platform blends both approaches. It uses workflows where predictability is key. It uses agents where open ended problems require dynamic decisions. This spectrum shows how to match method to need. Workflows provide a solid foundation. Agents handle the unexpected. Together, they cover the full range of tasks.
Generate it: At one end, w________ have predetermined code paths designed to operate in a certain order. (cue: w________; answer: workflows)
Generate it: At the other end, a_____ are dynamic and define their own processes and tool usage. (cue: a_____; answer: agents)
Ask yourself: Why does the case-study platform reserve model-directed loops for open-ended search and hard low-confidence cases, instead of using agents everywhere?
Recall check (try before reading the answer):
What do workflows give you, and what do agents give you instead? Answer: Workflows give predictability; agents give flexibility for open ended problems.
Why does the platform run most of its fleet on fixed classification and enrichment workflows? Answer: These are reliable and efficient, so loops are reserved for the few places they earn their cost.
In open-ended search, how does the cost-aware tool hierarchy balance cost and depth? Answer: glob returns only paths (capped at three hundred), grep returns file and line matches (capped at two hundred), and read returns full files (capped at three hundred lines).