-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/support multi tenant chat #129
Feature/support multi tenant chat #129
Conversation
@HenryHengZJ can you please review? |
playground/public/index.html
Outdated
@@ -0,0 +1,13 @@ | |||
<html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we remove this as well
@HenryHengZJ I've fixed all of your comments, please review Thanks |
pnpm-lock.yaml
Outdated
@@ -0,0 +1,4570 @@ | |||
lockfileVersion: '6.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry this file was accidentally merged last time. it has been removed, can we remove from this PR as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure @HenryHengZJ , done
please review
thanks @niztal ! |
In continuous to the conversation upon https://github.com/FlowiseAI/Flowise/pull/1709
I've added the support of multi tenant chatId with concatenation of {customerId}_{chatId}.
This way while singe chatflow serves multiple tenants, we can still have grouping of chat messages by specific customer (later on also chat messages feedbacks) by querying all the rows which contains in the chatId column the required customer's id.
@chungyau97 @HenryHengZJ please review
Thanks