Chat loop inside graph? #2264
Unanswered
hardik-vala
asked this question in
Q&A
Replies: 1 comment 3 replies
-
yup, you can use a human-in-the-loop setup like: https://langchain-ai.github.io/langgraph/how-tos/human_in_the_loop/wait-user-input/#agent |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm implementing a multi-agent network where some of the agents might have to chat with the user for more information inorder to perform their function. Is it possible to allow an LLM and user to converse back and forth inside a graph?
The Prompt Generation from User Requirements tutorial has an example of a single agent using a dialogue with the user to gather more information, but the chat loop is implemented outside the graph, ie,
I'm looking for a way to give some agents in my graph the ability to have conversations with the user without exiting the graph.
Beta Was this translation helpful? Give feedback.
All reactions