Как запросить у пользователя ввод и сохранить его в функции Dialogflow Fulfillment Cloud (Webhook)?
Это мой код
exports.function1= functions.https.onRequest((request, response) => {
const agent = new WebhookClient({request, response});
const conv = new DialogflowConversation(request);
function getInput(agent) {
// 1. function to prompt user for an input : For example, please enter something.
// 2. function to store the user input.
// 3. console.log("this is the input you had typed: " +user_input)
}
let intentMap = new Map();
intentMap.set("intent1", getInput);
agent.handleRequest(intentMap);