Hi, I have two questions:
I created a Dash chatbot that takes a query from users and returns the most relevant documents from the database using SentenceTransformers, FAISS, DistilBert, etc. I deployed the app using Azure Container Registry and App Services. When different users reach at the website, one can see others interaction with the chatbot and I cannot figure out if this is an issue with Dash App or the App Services.
Currently, I am running the app on a single container on Azure that takes the code/data from Azure Container registry instance I’ve created.
I tried to add threaded=True or processes > 1 within app.run_server( ) function but they didn’t help either.
-
How can I make this app available to different users asynchronously?
-
I am also trying to get user feedback after each conversation and store that data to Azure / GitHub somehow, and each time a new conversation starts it will need to load the data and append the new feedback data & write it to Azure storage / GitHub. Is this achievable with Plotly Dash?
Thanks in advance!