From 3c81e944ce1d3b4fcc14ea1099ef3041a8c3b84b Mon Sep 17 00:00:00 2001 From: ochafik Date: Tue, 9 Apr 2024 00:02:04 +0100 Subject: [PATCH] nits --- examples/server/copy.mjs.hpp | 0 examples/server/json-schema-to-grammar.hpp | 0 grammars/README.md | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 examples/server/copy.mjs.hpp delete mode 100644 examples/server/json-schema-to-grammar.hpp diff --git a/examples/server/copy.mjs.hpp b/examples/server/copy.mjs.hpp deleted file mode 100644 index e69de29bb..000000000 diff --git a/examples/server/json-schema-to-grammar.hpp b/examples/server/json-schema-to-grammar.hpp deleted file mode 100644 index e69de29bb..000000000 diff --git a/grammars/README.md b/grammars/README.md index 5c210de4c..c924e8d46 100644 --- a/grammars/README.md +++ b/grammars/README.md @@ -98,4 +98,4 @@ Grammars currently have performance gotchas (see https://github.com/ggerganov/ll A common pattern is to allow repetitions of a pattern `x` up to N times. -While semantically correct, the syntax `x? x? x?.... x?` (with N repetitions) will result in extremely slow inference. Instead, you can write `(x (x (x ... (x)?...)?)?)?` (w/ N-deep nesting) \ No newline at end of file +While semantically correct, the syntax `x? x? x?.... x?` (with N repetitions) will result in extremely slow inference. Instead, you can write `(x (x (x ... (x)?...)?)?)?` (w/ N-deep nesting)