Are Agentic Workflows the next big step after standard LLM prompt engineering?
I’ve been hearing Andrew Ng talk a lot about "Agentic Workflows" where the AI works in loops—planning, executing, and correcting itself—rather than just giving a zero-shot response. Is anyone here using frameworks like LangGraph, AutoGen, or CrewAI for complex coding tasks? I want to move away from simple prompts and build a system where multiple AI agents collaborate to build entire features. What are the biggest hurdles you've faced with agent loops?
2025-05-08 in AI and Deep Learning by Lucas Miller
| 9320 Views
All answers to this question.
Agentic workflows are definitely the future, but the biggest hurdle is "loop instability." If an agent gets stuck in a logic error, it can burn through a lot of tokens very quickly by repeatedly trying the same failing solution. We’ve had to implement "human-in-the-loop" checkpoints for our CrewAI setup. For example, the 'Researcher' agent gathers data, but the 'Writer' agent won't start until a human approves the research outline. This prevents the agents from hallucinating a whole project based on a single misinterpreted search result at the start of the chain.
Answered 2025-06-15 by Harper Robinson
Do you find that using specialized small models for sub-tasks is more efficient than using one giant GPT-4 instance for the entire agentic loop?
Answered 2025-07-02 by Elijah Scott
-
Elijah, we actually use a "Router" agent (usually GPT-4o) to decide which model to call. For simple data formatting, it pings a fast Llama 8B model, but for high-level architectural decisions, it stays with the larger model. This hybrid approach has cut our API costs by nearly forty percent while actually increasing the speed of our autonomous coding agents because the smaller models have much lower latency.
Commented 2025-07-10 by Lucas Miller
The debugging process is the hardest part. Tracking state across five different agents in a LangGraph workflow is a total nightmare without good logging tools.
Answered 2025-08-18 by Mia Garcia
-
Exactly, Mia. We started using LangSmith for tracing, and it’s the only way we can actually see where the logic breaks down in a multi-step agentic chain.
Commented 2025-08-22 by Harper Robinson
Write a Comment
Your email address will not be published. Required fields are marked (*)

