@@ -230,38 +230,38 @@ describe("utils", () => {
230230 } ) ;
231231
232232 test ( "Hugging Face simple URI is resolved 2" , async ( ) => {
233- const parsedModelUri = parseModelUri ( "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_L " ) ;
233+ const parsedModelUri = parseModelUri ( "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_M " ) ;
234234
235235 expect ( parsedModelUri ) . toMatchInlineSnapshot ( `
236236 {
237237 "baseFilename": "Meta-Llama-3.1-70B-Instruct",
238238 "filePrefix": "hf_bartowski_",
239239 "possibleFullFilenames": [
240- "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_L .gguf",
241- "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_L -00001-of-{:
240+ "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_M .gguf",
241+ "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_M -00001-of-{:
242242 {number}
243243 :}.gguf",
244244 ],
245245 "resolveDetails": {
246246 "model": "Meta-Llama-3.1-70B-Instruct-GGUF",
247- "tag": "Q5_K_L ",
247+ "tag": "Q5_K_M ",
248248 "type": "hf",
249249 "user": "bartowski",
250250 },
251251 "type": "unresolved",
252- "uri": "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_L ",
252+ "uri": "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_M ",
253253 }
254254 ` ) ;
255255
256256 const resolvedUri = await resolveParsedModelUri ( parsedModelUri ) ;
257257 expect ( resolvedUri ) . toMatchInlineSnapshot ( `
258258 {
259259 "filePrefix": "hf_bartowski_",
260- "filename": "Meta-Llama-3.1-70B-Instruct.Q5_K_L -00001-of-00002.gguf",
261- "fullFilename": "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_L -00001-of-00002.gguf",
262- "resolvedUrl": "https://huggingface.co/bartowski/Meta-Llama-3.1-70B-Instruct-GGUF/resolve/main/Meta-Llama-3.1-70B-Instruct-Q5_K_L /Meta-Llama-3.1-70B-Instruct-Q5_K_L -00001-of-00002.gguf?download=true",
260+ "filename": "Meta-Llama-3.1-70B-Instruct.Q5_K_M -00001-of-00002.gguf",
261+ "fullFilename": "hf_bartowski_Meta-Llama-3.1-70B-Instruct.Q5_K_M -00001-of-00002.gguf",
262+ "resolvedUrl": "https://huggingface.co/bartowski/Meta-Llama-3.1-70B-Instruct-GGUF/resolve/main/Meta-Llama-3.1-70B-Instruct-Q5_K_M /Meta-Llama-3.1-70B-Instruct-Q5_K_M -00001-of-00002.gguf?download=true",
263263 "type": "resolved",
264- "uri": "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_L ",
264+ "uri": "hf:bartowski/Meta-Llama-3.1-70B-Instruct-GGUF:Q5_K_M ",
265265 }
266266 ` ) ;
267267 } ) ;
0 commit comments