modelfusion 0.119.0 → 0.119.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -82,5 +82,5 @@ root ::= item+
|
|
82
82
|
# Excludes various line break characters
|
83
83
|
item ::= "- " [^\r\n\x0b\x0c\x85\u2028\u2029]+ "\n"
|
84
84
|
`;
|
85
|
-
var
|
86
|
-
Object.defineProperty(exports, "fromJsonSchema", { enumerable: true, get: function () { return
|
85
|
+
var convertJsonSchemaToGBNF_js_1 = require("./convertJsonSchemaToGBNF.cjs");
|
86
|
+
Object.defineProperty(exports, "fromJsonSchema", { enumerable: true, get: function () { return convertJsonSchemaToGBNF_js_1.convertJsonSchemaToGBNF; } });
|
@@ -16,4 +16,4 @@ export declare const jsonArray: string;
|
|
16
16
|
* @see https://github.com/ggerganov/llama.cpp/blob/master/grammars/list.gbnf
|
17
17
|
*/
|
18
18
|
export declare const list: string;
|
19
|
-
export { convertJsonSchemaToGBNF as fromJsonSchema } from "./convertJsonSchemaToGBNF";
|
19
|
+
export { convertJsonSchemaToGBNF as fromJsonSchema } from "./convertJsonSchemaToGBNF.js";
|
@@ -79,4 +79,4 @@ root ::= item+
|
|
79
79
|
# Excludes various line break characters
|
80
80
|
item ::= "- " [^\r\n\x0b\x0c\x85\u2028\u2029]+ "\n"
|
81
81
|
`;
|
82
|
-
export { convertJsonSchemaToGBNF as fromJsonSchema } from "./convertJsonSchemaToGBNF";
|
82
|
+
export { convertJsonSchemaToGBNF as fromJsonSchema } from "./convertJsonSchemaToGBNF.js";
|