mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* llama : move end-user examples to tools directory --------- Co-authored-by: Xuan Son Nguyen <son@huggingface.co>
		
			
				
	
	
		
			11 lines
		
	
	
		
			399 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			399 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { readFileSync } from "fs"
 | 
						|
import { SchemaConverter } from "../tools/server/public_legacy/json-schema-to-grammar.mjs"
 | 
						|
 | 
						|
const [, , file] = process.argv
 | 
						|
const url = `file://${file}`
 | 
						|
let schema = JSON.parse(readFileSync(file, "utf8"));
 | 
						|
const converter = new SchemaConverter({})
 | 
						|
schema = await converter.resolveRefs(schema, url)
 | 
						|
converter.visit(schema, '')
 | 
						|
console.log(converter.formatGrammar())
 |