1

I am building a Chat Bot with Dialogflow and Telegram - Python Flask web hook.

I am having trouble starting the conversation.

When I type '/Start', with a capital 'S' then is works. When I type '/start' with a lowercase 's', then it fails with the fall back intent.

I deleted the default welcome intent.

How do I start the conversion with the lowercase '/start' as well as the uppercase start '/Start'.

Thanks

tbowden
  • 1,008
  • 1
  • 19
  • 44

1 Answers1

1

According to documentation there are two events that you have to add to your intent: TELEGRAM_HELP for /help and TELEGRAM_WELCOME for /start.

I have just tried this and it works in my bot. enter image description here

Filip Kwiatkowski
  • 615
  • 2
  • 9
  • 20