我有这样的语法:
#JSGF V1.0;
grammar actions;
public <item> = save this story | skip this story | stop the news;
但是,它可以识别远程匹配这些短语的所有内容。有没有办法让我只在他们真正说出来的时候才认出这个短语?
我目前正在使用此代码来加载语法:
File actionsGrammar = new File(modelsDir, "grammar/actions.gram");
recognizer.addGrammarSearch("actions", actionsGrammar);
例如说save blah blah this blah blah story
应该不匹配,也不应该bake chris boring
。谢谢!