custom-chatbot-app
Version:
This is my custom chatbot package for BuyersEdge
10 lines • 953 B
JavaScript
import { getCurrentTime } from '../utils/getCurrentTime';
export var ManufactureGreetMessage = [
{ text: 'Hi, I\'m Erni! I\'m here to answer questions related to the manufacturer you have selected. Some questions you could ask me are "What are my most sold products this year?", or "Which item has grown the most compared to last year?"', isUser: false, timeStamp: getCurrentTime() },
{ text: 'I am configured to answer questions related to products sold by manufacturers, and may not be able to answer questions about other topics.', isUser: false, timeStamp: getCurrentTime() }
];
export var OperatorGreetMessage = [
{ text: 'Hi, I\'m Erni! I\'m here to answer questions related to the Operator you have selected.', isUser: false, timeStamp: getCurrentTime() },
{ text: 'I am configured to answer questions related to products sold by Operators', isUser: false, timeStamp: getCurrentTime() }
];
//# sourceMappingURL=GreetMessage.js.map