Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In a chatbot conversation using dialogflow, Is there a way to make the bot speak first?

Is it possible to format a conversation so that the bot initiates conversation using dialogflow in a web demo integration?

The objective is to say something like “Hi, I’m a bot, I can do x” to establish that it’s a chatbot rather than a human.

Can anyone suggest any idea for this?

like image 586
amy Avatar asked Jul 05 '18 05:07

amy


1 Answers

You can set a welcome intent, then send a /query request containing an event parameter. Set the event parameter to WELCOME and your chatbot will respond with whatever conversation opening you set.

More info here: https://dialogflow.com/docs/events

like image 112
Omegastick Avatar answered Nov 14 '22 07:11

Omegastick