bibot 1.0.36 → 1.0.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -3283,6 +3283,7 @@ var resources;
3283
3283
  resources["predefinedQ"] = "/predefined-q";
3284
3284
  resources["timeoutQ"] = "/timeout-q";
3285
3285
  resources["q"] = "/q";
3286
+ resources["predefinedQstatistics"] = "/predefined-questions-statistics";
3286
3287
  })(resources || (resources = {}));
3287
3288
 
3288
3289
  var inferenceBaseURL = endpoints.inference;
@@ -3576,7 +3577,8 @@ var askBiBot = function askBiBot(data) {
3576
3577
  var recordPredefinedQ = function recordPredefinedQ(data) {
3577
3578
  try {
3578
3579
  return Promise.resolve(_catch(function () {
3579
- var path = 'https://training.dev.bibot.thespuka.com/v0/training/predefined-questions-statistics';
3580
+ var path = "" + domain.inference + resources.predefinedQstatistics;
3581
+ console.log(data, 'here');
3580
3582
  return Promise.resolve(pluginAxiosInstance.post(path, data)).then(function (response) {
3581
3583
  console.log(response, 'here is the res');
3582
3584
  return response.data;
@@ -3658,10 +3660,11 @@ var useBiBotChatBot = function useBiBotChatBot(_ref) {
3658
3660
  setIsLoading(true);
3659
3661
  var input = question.question.trim();
3660
3662
  recordPredefinedQ({
3661
- client_id: clientId,
3662
- question: question.question
3663
+ "client_id": clientId,
3664
+ "question": question.question,
3665
+ "q_n_a_id": question.q_n_a_id
3663
3666
  });
3664
- console.log(question.question, client_id);
3667
+ console.log(question.question, client_id, question.q_n_a_id);
3665
3668
  setUserInput('');
3666
3669
  if (input === question.question) {
3667
3670
  setMessages(function (messages) {