Olivier Chafik 
							
						 
					 
					
						
						
							
						
						ab9a3240a9 
					 
					
						
						
							
							JSON schema conversion:  ⚡ ️ faster repetitions, min/maxLength for strings, cap number length ( #6555 )  
						
						 
						
						... 
						
						
						
						* json: rename python schema converter to make import easier
* server: skip null json_schema / grammar fields
* json: deps management for primitive rules (+ allow null values)
* json: optimize repetitions for minItems/maxItems and regexps: `a{,3}` goes from `"a"? "a"? "a"?` (explosive combos) to `(a (a (a)?)?)?`
* grammars: add troubleshooting section to readme
* json: cap length of numbers to 15 digits before/after decimal point
(avoids infinite gen, e.g. "one third" -> `0.333333333333...`)
* json: unify all repetition code (w/ or w/o sep)
* json: support string minLength/maxLength
* server+json: update server/README w/ result_format
* nits
* json: fix type error w/ python 3.8
* json: fix server/README (json_schema in /completion vs. result_format in /v1/chat/completions)
* json: simplify DOT `{"type": "string", "pattern": "^.$"}`
* json: remove recursion in opt_repetitions (avoids Python stack overflow)
* json: rm dead code
* json: rm useless assert & ggml.h import 
						
						
					 
					
						2024-04-12 19:43:38 +01:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ExtReMLapin 
							
						 
					 
					
						
						
							
						
						3de31677d3 
					 
					
						
						
							
							grammars : blacklists character control set ( #5888 )  
						
						 
						
						... 
						
						
						
						* Prevent control characters from being served in json string
* Prevent control characters from being served in json string (array) 
						
						
					 
					
						2024-03-05 18:33:08 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Georgi Gerganov 
							
						 
					 
					
						
						
							
						
						82cb31eb93 
					 
					
						
						
							
							Revert "grammars : don't allow to output unescaped new line in string ( #5885 )"  
						
						 
						
						... 
						
						
						
						This reverts commit b1a4e994fd . 
						
						
					 
					
						2024-03-05 15:56:24 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ExtReMLapin 
							
						 
					 
					
						
						
							
						
						b1a4e994fd 
					 
					
						
						
							
							grammars : don't allow to output unescaped new line in string ( #5885 )  
						
						 
						
						... 
						
						
						
						* Don't allow grammar json array to output unescaped new line in string
* Don't allow new line in json object string 
						
						
					 
					
						2024-03-05 15:44:29 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Richard Kiss 
							
						 
					 
					
						
						
							
						
						532dd74e38 
					 
					
						
						
							
							Fix some documentation typos/grammar mistakes ( #4032 )  
						
						 
						
						... 
						
						
						
						* typos
* Update examples/parallel/README.md
Co-authored-by: Kerfuffle <44031344+KerfuffleV2@users.noreply.github.com >
---------
Co-authored-by: Kerfuffle <44031344+KerfuffleV2@users.noreply.github.com > 
						
						
					 
					
						2023-11-11 23:04:58 -07:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Georgi Gerganov 
							
						 
					 
					
						
						
							
						
						921772104b 
					 
					
						
						
							
							speculative : add grammar support ( #2991 )  
						
						 
						
						... 
						
						
						
						* speculative : add grammar support
* grammars : add json_arr.gbnf
* grammar : add comments to new grammar file
* grammar : remove one nested level
* common : warm-up with 2 tokens - seems to work better
* speculative : print draft token pieces
* speculative : reuse grammar parser + better logs and comments
* speculative : avoid grammar_mem
* make : fix speculative build 
						
						
					 
					
						2023-09-05 08:46:17 +03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ben Siraphob 
							
						 
					 
					
						
						
							
						
						d8d6977f48 
					 
					
						
						
							
							examples : add C grammar ( #2357 )  
						
						 
						
						
						
						
					 
					
						2023-09-01 16:32:14 +03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Evan Jones 
							
						 
					 
					
						
						
							
						
						f5fe98d11b 
					 
					
						
						
							
							docs : add grammar docs ( #2701 )  
						
						 
						
						... 
						
						
						
						* docs : add grammar docs
* tweaks to grammar guide
* rework GBNF example to be a commented grammar 
						
						
					 
					
						2023-08-22 21:01:57 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Evan Jones 
							
						 
					 
					
						
						
							
						
						8183159cf3 
					 
					
						
						
							
							examples : generate JSON according to schema ( #1887 )  
						
						 
						
						... 
						
						
						
						* examples : add JSON schema grammars
* complete JSON grammar
* ensure primitive types can be used as root of schema
* support integer type and adjust usage text 
						
						
					 
					
						2023-08-02 22:05:44 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Evan Jones 
							
						 
					 
					
						
						
							
						
						84e09a7d8b 
					 
					
						
						
							
							llama : add grammar-based sampling ( #1773 )  
						
						 
						
						... 
						
						
						
						* llama, main : constrain sampling to grammar
* allow loading grammar from file
* fix whitespace errors
* handle & print parser errors
* add comments to grammar syntax and allow newlines where unambiguous
* add missing include
* support alternates in root rule
* fix bugs with empty token and EOS
* adjust JSON grammar
* remove swp file
* rewrite ternary expressions
Co-authored-by: Henri Vasserman <henv@hot.ee >
* use struct for grammar elements and add Unicode support
* add unicode escapes
* add inverse char ranges
* only sample full tokens (no peeking or truncation)
* llama : minor style changes
blindly applied in online editor - hopefully I didn't break something
* update help text
* add warning message if EOS is disabled
---------
Co-authored-by: Henri Vasserman <henv@hot.ee >
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com > 
						
						
					 
					
						2023-07-23 23:58:10 -04:00