mirror of https://github.com/ggml-org/llama.cpp
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())
|