mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-17 04:19:40 +00:00
6 lines
242 B
Text
6 lines
242 B
Text
# note: this might be incomplete, mostly an example
|
|
root ::= en-char+ ([ \t\n] en-char+)*
|
|
en-char ::= letter | digit | punctuation
|
|
letter ::= [a-zA-Z]
|
|
digit ::= [0-9]
|
|
punctuation ::= [!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~]
|