我正在努力让 Cortana 与后台应用服务交互。Cortana 正在使用一个语音命令集,但是当我尝试来自不同命令集的任何语音命令时,它只会在 Bing 中打开搜索。
关于可能导致它的原因或更改命令以使其更好地与 Cortana 一起使用的任何建议?
不起作用的命令集:
<Command Name="SetTemperatureDefault">
<Example> change the temperature to 72 degrees </Example>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> set [the] temperature to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> change [the] temperature to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> increase [the] temperature to {Temperature} </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> decrease [the] temperature to {Temperature} </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> set to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> change to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> increase to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> decrease to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> set temp to {Temperature} degrees </ListenFor>
<ListenFor RequireAppName="BeforeOrAfterPhrase"> change temp to {Temperature} degrees </ListenFor>
<Feedback> Changing temperature... </Feedback>
<VoiceCommandService Target="CozyVoiceCommandService" />
</Command>