LangGraph Builder - Utility and abstraction to quickly build graphs #26973 #1898
Replies: 2 comments 3 replies
-
Hi @rvndbalaji, I'm also trying to implement something similar for a different use case. In my case, the goal is to create a drag-and-drop flow builder, similar to Langflow (worth exploring), and then dynamically generate agents based on the configurations. The key challenge is to retrieve all the configurations in real time, dynamically create the tools, and then construct an agent from them. Your implementation seems quite similar to what I need. Would you mind explaining how you did this? |
Beta Was this translation helpful? Give feedback.
-
this is very cool! we probably wont implement as part of langgraph (we want langgraph to remain more low level) or langchain-core (even more low level), but there is 100% room for DevX like this, and even better if built on top of LangGraph (you get all the persistence, human-in-hte-loop, observability etc for free) If you want to make this into a package/repo of your own, we would def share! |
Beta Was this translation helpful? Give feedback.
-
In my org, I implemented a utility class to dynamically build LangGraph graphs
and abstracted away some of the common details
It is no means perfect, and is probably incomplete,
but is there a way for you guys to implement this in langchain-core or langgraph??
I have this raw implementation here - https://gist.github.com/rvndbalaji/2f50bf3d2fc635bf2f36f71c724e3347
This can be used as a reference to implement a proper utility class
@baskaryan @hwchase17
Beta Was this translation helpful? Give feedback.
All reactions