dialogflow-botkit-client icon indicating copy to clipboard operation
dialogflow-botkit-client copied to clipboard

kkak

Open howart113 opened this issue 7 years ago • 1 comments

howart113 avatar Sep 05 '17 09:09 howart113

7,7 +37,13 @@ router.post('/message', (req, res) => { sessionId: new Date().getTime() }).then((response) => { const {result, result: {action}} = response.data;

  •  const text = ACTIONS[action](result);
    
  •  let text;
    
  •  if (ACTIONS[action]) {
    
  •  	text = ACTIONS[action](result);
    
  •  } else {
    
  •  	text = result.fulfillment.speech;
    
  •  }
     log.chat(LOG_FLAG, result.resolvedQuery, text);
    
     resp(text);
    

howart113 avatar Sep 05 '17 09:09 howart113