File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ describe("gguf", () => {
278278 expect ( parseGGUFQuantLabel ( "Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf" ) ) . toEqual ( "Q4_K_M" ) ;
279279 expect ( parseGGUFQuantLabel ( "subdir/Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf" ) ) . toEqual ( "Q4_K_M" ) ;
280280 expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1-Q2_K.gguf" ) ) . toEqual ( "Q2_K" ) ;
281- expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1gguf " ) ) . toEqual ( undefined ) ;
281+ expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1.gguf " ) ) . toEqual ( undefined ) ;
282282 expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1-F32-Q2_K.gguf" ) ) . toEqual ( "Q2_K" ) ; // gguf name with two quant labels [F32, Q2_K]
283283 expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1-IQ3_XS.gguf" ) ) . toEqual ( undefined ) ; // TODO: investigate IQ3_XS
284284 expect ( parseGGUFQuantLabel ( "Codestral-22B-v0.1-Q4_0_4_4.gguf" ) ) . toEqual ( "Q4_0" ) ; // TODO: investigate Q4_0_4_4
You can’t perform that action at this time.
0 commit comments