我使用Bot Framework SDK为Cortana创建了一项技能,它运行得很好,我唯一的问题是Cortana没有大声读出我的提示,这意味着用户需要自己阅读它们。到目前为止我没有找到任何关于此的信息,是否有人知道是否可以让Cortana读取提示以及我需要做什么?
答案 0 :(得分:2)
你必须再编写几行代码才能实现这一目标!
Activity reply = activity.CreateReply("This is the text that Cortana displays.");
reply.Speak = "This is the text that Cortana will say.";
您可以查看文档here