1

Is there any way to select multiple options for single intent?

example-

bot: please select your hobbies? (suggestions chips options are = "Cricket", "Football", "Basketball", "Chess", "Reading" etc.) user: want to select cricket, football and, chess

Is it possible to make multiple selections?

Vikas Patidar
  • 203
  • 1
  • 13

1 Answers1

0

No, with clicking on chips you can only select one chips suggestion. However, you can handle this via a user utterance in followup intent.

bot: please select your hobbies? (suggestions chips options are = "Cricket", "Football", "Basketball", "Chess", "Reading" etc.)

user: My hobbies are cricket and football.

These you can extract in follow up intent.

Abhinav Kumar
  • 2,883
  • 1
  • 17
  • 30