A Question about graph composition #945
Closed
Meguminnnnnnnn
started this conversation in
General
Replies: 1 comment 2 replies
-
not sure i understand, how are you defining your state/graph? depending on how you are defining your state you may just be able to to do a -> b -> c |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There is a graph:
In the graph, nodeC depends on the output of nodeA and nodeB, nodeB depends on the output of nodeA. I need to add a 'Passthrough' node to pass nodeA's output to nodeC.
Why don't LangGraph execute a node when all its preceding nodes are ready, like tensorflow, so that we can compose graph like:
I‘m concerned about why LangGraph decide to use the mode that execute the next node of each current node but not the mode like tensorflow?
Beta Was this translation helpful? Give feedback.
All reactions