Tag: cortana skills kit

Cortana技能中没有使用FormFlow提示

我正在通过使用FormFlow构建机器人来构建Coratana技能。 我使用LUIS检测我的意图和实体,并将实体传递给我的FormFlow对话框。 如果未填写一个或多个FormFlow字段,FormFlow对话框将提示用户填写缺少的信息,但不会说出此提示,仅显示在cortana屏幕上。 FormFlow有没有办法说出提示? 在下面显示的屏幕截图中,提示“你需要机场class车吗?” 只是显示而不是说: 我的formFlow定义如下所示: [Serializable] public class HotelsQuery { [Prompt(“Please enter your {&}”)] [Optional] public string Destination { get; set; } [Prompt(“Near which Airport”)] [Optional] public string AirportCode { get; set; } [Prompt(“Do you need airport shuttle?”)] public string DoYouNeedAirportShutle { get; set; } }