Cortana 技能:为什么 Cortana 不大声朗读我的提示?
Cortana Skill: Why doesn't Cortana read my prompts aloud?
我使用 Bot Framework SDK 为 Cortana 创建了一项技能,它运行良好,唯一的问题是 Cortana 不会大声朗读我的提示,这意味着用户需要自己阅读。到目前为止我没有找到任何相关信息,有谁知道是否可以让 Cortana 阅读提示以及我需要做什么?
您需要多写几行代码才能实现!
Activity reply = activity.CreateReply("This is the text that Cortana displays.");
reply.Speak = "This is the text that Cortana will say.";
你可以查看文档here
我使用 Bot Framework SDK 为 Cortana 创建了一项技能,它运行良好,唯一的问题是 Cortana 不会大声朗读我的提示,这意味着用户需要自己阅读。到目前为止我没有找到任何相关信息,有谁知道是否可以让 Cortana 阅读提示以及我需要做什么?
您需要多写几行代码才能实现!
Activity reply = activity.CreateReply("This is the text that Cortana displays.");
reply.Speak = "This is the text that Cortana will say.";
你可以查看文档here