May 2017
Intermediate to advanced
388 pages
7h 30m
English
A lot can be done on the chatbot side. We can add more variety of training data and make it a lot smarter than it is now. Keep in mind that we are not completely training the algorithm from scratch, and it is probably already pre-trained, and we may not need to provide thousands of data samples in order to get good results.
On the Meteor side, we can create a better session store than holding the user ID in an object, we can use more robust and scalable solutions, such as a Redis. Also, we can send messages with the quick replies buttons that we have defined in the story. We can add them in message object:
const body = JSON.stringify({recipient: { id }, message: { text,quick_replies } });
The format of the object ...
Read now
Unlock full access