C.Calzana
C.Calzana

Reputation: 761

Prompt user for input upon bot start up

I am creating a chatbot in dialogflow, and I want it to prompt the user for input as soon as it load. E.g

"Hi, how may I help?"

I am able to get it to response once a user says hi, but not without that input. Any ideas?

Upvotes: 0

Views: 77

Answers (1)

Marc Asmar
Marc Asmar

Reputation: 1577

Check out Dialogflow Events

Events allow you to invoke intents based on something that has happened instead of what a user communicates.

More specifically Welcome Event, you can start typing "Welcome" in the Events section of an intent

enter image description here

Common events like WELCOME events may be auto-completed to help you pick the right event.

Upvotes: 1

Related Questions