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 bcc6599 commit 8c59e92Copy full SHA for 8c59e92
packages/gguf/src/gguf.spec.ts
@@ -279,5 +279,6 @@ describe("gguf", () => {
279
expect(parseGGUFQuantLabel("subdir/Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf")).toEqual("Q4_K_M");
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
});
284
0 commit comments