Replies: 3 comments 7 replies
-
I do not think it is possible to do that. The models are incapable of accomplishing this, even with Langgraph. |
Beta Was this translation helpful? Give feedback.
1 reply
-
It is probably possible. Your description is hard to understand but I think the thing you're trying to make is roughly just a finite state machine. As long as you write appropriate reducers it should work. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Would something like this work?
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If I want to create a state that holds the following information:
Message: a list
Content: a string read from a file
Sender: the name of the agent
Here's the process flow I envision:
The reader agent reads the content from a file, setting the sender as the reader.
The state is then passed to the researcher who fact-checks and updates the content, updating the sender to the researcher.
The state is then passed to the writer who writes the content and then clears it, sending the state back to the reader.
How can one implement such logic and functionality? Are states this flexible? How would the agent_node function, as shown in the tutorial, look in this context?
Beta Was this translation helpful? Give feedback.
All reactions