From b333b06772c89d96aacb5490d6a219fba7c09cc6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 12 Feb 2026 20:57:17 +0100 Subject: Engage! --- llama.cpp/grammars/english.gbnf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 llama.cpp/grammars/english.gbnf (limited to 'llama.cpp/grammars/english.gbnf') diff --git a/llama.cpp/grammars/english.gbnf b/llama.cpp/grammars/english.gbnf new file mode 100644 index 0000000..2e53686 --- /dev/null +++ b/llama.cpp/grammars/english.gbnf @@ -0,0 +1,6 @@ +# 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 ::= [!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~] -- cgit v1.2.3