We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c59e92 commit 88f1ad3Copy full SHA for 88f1ad3
packages/gguf/src/gguf.spec.ts
@@ -280,5 +280,7 @@ describe("gguf", () => {
280
expect(parseGGUFQuantLabel("Codestral-22B-v0.1-Q2_K.gguf")).toEqual("Q2_K");
281
expect(parseGGUFQuantLabel("Codestral-22B-v0.1gguf")).toEqual(undefined);
282
expect(parseGGUFQuantLabel("Codestral-22B-v0.1-F32-Q2_K.gguf")).toEqual("Q2_K"); // gguf name with two quant labels [F32, Q2_K]
283
+ expect(parseGGUFQuantLabel("Codestral-22B-v0.1-IQ3_XS.gguf")).toEqual("IQ3_XS");
284
+ expect(parseGGUFQuantLabel("Codestral-22B-v0.1-Q4_0_4_4.gguf")).toEqual("Q4_0_4_4");
285
});
286
0 commit comments