New to LangGraph | Is Human-in-the-loop possible through API #3364
Unanswered
KiranCNayak
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I will have the following 3 nodes in LangGraph:
Information collector - collects various details from the user. Remember the user can't give all 4 details in one go, agent should ask for them one after the other.
Transformer - does processing on data that was input. Even in this node, the user should be able to update / change the content, if they are not satisfied with the transformation done by the agent.
Uploader - uploads the transformed data to a storage account for persistence.
Now the problem I am trying to solve is how to get the user's input in the intermediate steps, when the flow is not yet complete or in the middle of getting completed? Ex: I want to collect the 4 details one after the other, like a chatbot would ask. Give me data1, now give me data2, and so on.
I need this interaction to happen over an API.
Is the START-to-END flow always supposed to happen before the request can be responded to?
Beta Was this translation helpful? Give feedback.
All reactions