本文整理匯總了TypeScript中dialogflow-fulfillment.WebhookClient類的典型用法代碼示例。如果您正苦於以下問題:TypeScript WebhookClient類的具體用法?TypeScript WebhookClient怎麽用?TypeScript WebhookClient使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了WebhookClient類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: WebhookClient
export const sampleFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
// Run the proper function handler based on the matched Dialogflow intent name
const intentMap = new Map();
intentMap.set(WelcomeIntent.name, WelcomeIntent.function);
agent.handleRequest(intentMap);
});
示例2: welcome
function welcome(agent: WebhookClient) {
agent.add(`Welcome in this assistant!`);
}
示例3: welcome
async function welcome(agent: WebhookClient) {
agent.add('Bienvenue sur ce chatbot. De quoi as-tu besoin?')
}