Comment by andy99
Anthropic has a definition:
Workflows are systems where LLMs and tools are orchestrated through predefined code paths.
Agents, on the other hand, are systems where LLMs dynamically direct their own processes and tool usage, maintaining control over how they accomplish tasks
https://www.anthropic.com/engineering/building-effective-age...While I know it's a marketing term, I think a good distinction is that agents have a loop in the execution graph, and can choose whether to loop or keep going. Workflows are chained LLM calls where the LLM has no "choice".
I should have read this 12h ago! This afternoon, I tried to create my first simple agent using LangChain. My aim was to repeatedly run a specific python analysis function and perform a binary search to find the optimal result, then compile the results into a markdown report and export it as a PDF.
However, I now realize that most of these steps don't require AI at all, let alone agents. I wrote the full algorithm (including the binary search!) in natural language for the LLM. And although it sometimes worked, the model often misunderstood and produced random errors out of the blue.
I now realize that this is not what agents are for. This problem didn't require any agentic behavior. It was just a fixed workflow, with one single AI step (generating a markdown report text).
Oh well, nothing wrong with learning the hard way.