Cortana 文本查询
Cortana text queries
我正在开发 Cortana 应用程序,我想使用文本查询(以及语音查询)测试我的应用程序,但 Cortana 仅在我使用语音命令时激活我的应用程序。是否可以仅使用文本来测试应用程序?
App中应该modify/program什么才能让Cortana根据文本查询调用App?
我使用的笔记本电脑 Windows 10.
这是我的 VCD 样本:
<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
<CommandSet xml:lang="en-us" Name="FruitsCommandSet_en-us">
<AppName>Nutritional</AppName>
<Example>Show nutritional information about fruits.</Example>
<Command Name="GetFruitNames">
<Example>Show the fruit nutritional facts.</Example>
<ListenFor RequireAppName="ExplicitlySpecified">[Show] {builtin:AppName} details for [the] {FruitName}.</ListenFor>
<Feedback>Loading fruit details...</Feedback>
<Navigate />
</Command>
<PhraseTopic Label="FruitName">
</PhraseTopic>
</CommandSet>
</VoiceCommands>
在此发帖,以便从上面的讨论中更清楚地了解最终答案。
John 使用的 VCD 文件具有需要设置 AppName 的功能(builtin:AppName 标记),并且在 ListenFor 语句中有一些标点符号,这使得文本匹配更加困难。
最好避免在 ListenFor 语句中使用标点符号(例如句点)。虽然语音识别采用 confidence-based 匹配方法并且可以应付,但文本输入要严格一些。
我正在开发 Cortana 应用程序,我想使用文本查询(以及语音查询)测试我的应用程序,但 Cortana 仅在我使用语音命令时激活我的应用程序。是否可以仅使用文本来测试应用程序?
App中应该modify/program什么才能让Cortana根据文本查询调用App?
我使用的笔记本电脑 Windows 10.
这是我的 VCD 样本:
<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
<CommandSet xml:lang="en-us" Name="FruitsCommandSet_en-us">
<AppName>Nutritional</AppName>
<Example>Show nutritional information about fruits.</Example>
<Command Name="GetFruitNames">
<Example>Show the fruit nutritional facts.</Example>
<ListenFor RequireAppName="ExplicitlySpecified">[Show] {builtin:AppName} details for [the] {FruitName}.</ListenFor>
<Feedback>Loading fruit details...</Feedback>
<Navigate />
</Command>
<PhraseTopic Label="FruitName">
</PhraseTopic>
</CommandSet>
</VoiceCommands>
在此发帖,以便从上面的讨论中更清楚地了解最终答案。
John 使用的 VCD 文件具有需要设置 AppName 的功能(builtin:AppName 标记),并且在 ListenFor 语句中有一些标点符号,这使得文本匹配更加困难。
最好避免在 ListenFor 语句中使用标点符号(例如句点)。虽然语音识别采用 confidence-based 匹配方法并且可以应付,但文本输入要严格一些。