如何在 Rasa X 中发出带有超链接的动态消息?

How do I utter dynamic message with hyperlink attached in Rasa X?

如何发出消息,显示基于数据表的结果,并在文本中附加超链接?
我正在努力实现的示例:

    num = phone_format(str(sheet["" + chr(ord(requested_info_column)+1) + "{}".format(row)].value))
    dispatcher.utter_message(text="The " + column_names[requested_info_column] 
       + " for the " + str(sheet["B{}".format(row)].value) + " project is "
       + str(sheet["" + str(requested_info_column) + "{}".format(row)].value)
       + " and can be reached at " + num)

格式化方法:

def phone_format(n):
   formatNum = '({}){}-{}'.format(n[0:3], n[3:6], n[6:])
   hypNum = '<a href="tel:%s">%s</a>' % (n, formatNum)
   return  hypNum


我遇到的问题是 Rasa X 显示字符串,数据正确,但超链接没有附加到 phone 数字。

前端显示link,不同平台是不一样的。 Rasa X 使用 Markdown 格式显示 links.

因此,需要使用Markdownlink格式来展示,而不是普通的锚标签。

改变

hypNum = '<a href="tel:%s">%s</a>' % (n, formatNum)

至此

hypNum = '[%s](tel:%s)' % (formatNum,n)

希望这能解决您的问题。