Replies: 1 comment
-
After implementing the whole thing by my own I recognized that finally there is a official support for updating graph state from a tool node: https://langchain-ai.github.io/langgraph/how-tos/update-state-from-tools/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm implementing an agent system and facing challenges in effectively manipulating the graph state within my tools. Here are the scenarios:
Multi-Agent System with Supervisor:
Pillow
image) between tools through the graph state, allowing one agent with a tool to write data and another agent with a tool to read it.React Agent with Multiple Tools:
Request: What is the recommended approach for enabling agents and tools to read/write to the graph state in these scenarios?
I tried to follow this approach: pass-run-time-values-to-tools. But this does not work when I try to change the state in the tool in a way that a other tool can read the state again.
Beta Was this translation helpful? Give feedback.
All reactions