Re: Implementing multiple session support in a chatbot

2019-05-19 Thread Parth Sharma
tern. It's use is already > explained above. > > As you are using django channels for websockets, you will have to combine > that code with this pattern. > I don't have any experience with websockets, you will have to figure it > out :P > > I hope it helps :) &

Implementing multiple session support in a chatbot

2019-05-18 Thread Parth Sharma
I am currently implementing a Chatbot purely in python. In my current implementation, each time the user starts a new chat from a session, another Chatbot instance is launched and hence the Chatbot starts from the initial state. I wish to change that behaviour and make it similar to let’s say

Convert JSON data into structured data in an SQL database using Django ORM

2019-02-02 Thread Parth Sharma
I am building a chatbot using Django with a MySQL backend. I have a `ChatSession` model which represents all the useful information to be stored after the end of a chat session . Now, it has a JSON field called `cc_data`(Implemented using [`django-jsonfield`](https://github.com/dmkoch/django-j