是否可以在Rasa Chatbot中添加日期选择器?

时间:2020-01-22 11:27:24

标签: nlp chatbot rasa-nlu rasa-core rasa

我正在尝试使用Rasa制作一个网站聊天机器人,在该网站上将询问用户其出生日期(如我附带的照片)。 enter image description here

是否可以在Rasa中添加日期选择器?我已经阅读了文档,但是对于如何为网站自定义它感到困惑。

1 个答案:

答案 0 :(得分:1)

可以将日期选择器或其他附件添加到Rasa中,您可以通过指定自定义输出有效负载将它们包含在助手中。但是,要使其正常工作,您首先需要在客户端中实现特定的附件。

例如,Slack有一个阻止日期选择器,然后可以将其添加到Rasa中,如下所示:

responses:
  utter_take_bet:
  - custom:
      blocks:
      - type: section
        text:
          text: "Make a bet on when the world will end:"
          type: mrkdwn
        accessory:
          type: datepicker
          initial_date: '2019-05-21'
          placeholder:
            type: plain_text
            text: Select a date

您使用哪个聊天小部件将Rasa集成到您的网站上?