Views
No views yet
ChillTranslator_Q4_K_M.gguf is under 2 GB and works with llama.cpp. It’s meant to run with a grammar file, producing JSON objects to ensure it generates only the requested output.ChillTranslator with the necessary options:llama.cpp/main -m ChillTranslator_Q4_K_M.gguf --interactive-first --grammar-file ChillTranslator.grammar1root ::= TextRevision
2BetterTerm ::= "{" ws "\"old\":" ws string "," ws "\"new\":" ws stringlist "}"
3BetterTermlist ::= "[]" | "[" ws BetterTerm ("," ws BetterTerm)* "]"
4TextRevision ::= "{" ws "\"better_terms\":" ws BetterTermlist "," ws "\"minimal_fix\":" ws string "," ws "\"nvc_perspective\":" ws string "," ws "\"constructive\":" ws string "," ws "\"hybrid\":" ws string "," ws "\"final\":" ws string ws "}"
5TextRevisionlist ::= "[]" | "[" ws TextRevision ("," ws TextRevision)* "]"
6string ::= "\"" ([^"]*) "\""
7boolean ::= "true" | "false"
8ws ::= [ \t\n]*
9number ::= [0-9]+ "."? [0-9]*
10stringlist ::= "[" ws "]" | "[" ws string ("," ws string)* ws "]"
11numberlist ::= "[" ws "]" | "[" ws number ("," ws number)* ws "]"