text-generation-webui / grammars /simple_arithmetic.gbnf
blaketm's picture
Upload folder using huggingface_hub
60be607
root ::= (expr "=" ws term "\n")+
expr ::= term ([-+*/] term)*
term ::= num | "(" ws expr ")" ws
num ::= [0-9]+ ws
ws ::= [ \t\n]*
# this is a comment