-
We're building an AI b2b saas product. For our agentic systems, I find langgraph too rigid to build enterprise apps on. For instance, we would like to customize agents and handoffs for each customer, but langgraph expects you to hardcode handoffs (e.g. transfer_to_agent_a() rather than transfer_to_agent(agent_a)). This means we will have file level customization (acme_inc.py) rather than configuration level customizations (acme_inc.json), which does not sound like a good practice. Has anyone else experienced that too or am I thinking about it wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Appreciate the feedback! You can jump to any node in the graph by returning a command from a node: https://langchain-ai.github.io/langgraph/how-tos/command/?h=command The world is your oyster. Also totally valid to define deep nodes if you want. LangGraph nodes define snapshot boundaries for things like human-in-the-loop but you don't have to use a thousand nodes in a graph if you don't want. |
Beta Was this translation helpful? Give feedback.
-
@teshnizi there is nothing in langgraph that defines the idea of "transfer_to_agent_X" - langgraph is a low level library where you can implement any possible variants of agent architectures / handoffs. you can almost certainly implement a general purpose handoff tool that has agent name populated by an LLM, if that's what you're looking for |
Beta Was this translation helpful? Give feedback.
Thanks!
So I've seen that but I want the agent to make the handoff decision. I guess I can use a structured output call in the agent call to get the next tool, but I'll have to create an output structure for all the invoke calls. That doesn't sound like a clean solution. Am I missing anything?