mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			242 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			242 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# 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 ::= [!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~]
 |