Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Neu256
/
text-generation-webui
like
0
Runtime error
App
Files
Files
Community
659f8ee
text-generation-webui
/
grammars
/
simple_arithmetic.gbnf
Neu256
Upload 7 files
afd8fc6
verified
10 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
root ::= (expr
"="
ws term
"\n"
)+
expr ::= term ([-+*/] term)*
term ::= num |
"("
ws expr
")"
ws
num ::= [
0
-9
]+ ws
ws ::= [ \t\n]*
# this is a comment