How to use langchain to build chatbot for supporting multiple users #3813
Unanswered
zhangyuanxun
asked this question in
Q&A
Replies: 1 comment
-
A separate chain for each user makes sense to me and would probably be the way I would implement it. Each chain can have its own memory and that helps keeps each user's conversation separate. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello community,
I'm using LangChain to build a chatbot that can support multiple users. Specifically, I'm wondering how to use LangChain to create a chatbot system that can keep track of each user's conversation memory separately.
Currently, my solution involves initializing a QA chain for each session so that multiple sessions can have their own chain. However, I'm wondering if there is a better way to achieve this.
Any suggestions or recommendations would be greatly appreciated.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions