freeswitch/scripts/yes_no.gram
Brian West 54ff389b09 Revamp mod_pocketsphinx to use jsgf format. Known bugs which are going to be fixed are:
Using words in your grammar that aren't in the dictionary will segfault.  Bug is already brought up with the pocketsphinx maintainer.

/b



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12224 d0543943-73ff-0310-b7d9-9358b9ac24b2
2009-02-21 22:47:15 +00:00

15 lines
142 B
Text

#JSGF V1.0;
/**
* JSGF Grammar for example
*/
grammar example;
<yes> = [ yes ];
<no> = [ no ];
public <results> = [ <yes> | <no> ];