CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 4d agoView on Hugging Face
0likes1.1kdownloads
arithmetic.gbnf7 linesDownload Raw Back to grammars
1root  ::= (expr "=" ws term "\n")+2expr  ::= term ([-+*/] term)*3term  ::= ident | num | "(" ws expr ")" ws4ident ::= [a-z] [a-z0-9_]* ws5num   ::= [0-9]+ ws6ws    ::= [ \t\n]*7