From 3ed1667b77a5440cd74e51ca228247bce019cc94 Mon Sep 17 00:00:00 2001 From: coyotte508 Date: Thu, 14 Nov 2024 02:47:45 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Larger=20timeout=20for=20gguf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/gguf/src/gguf.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gguf/src/gguf.spec.ts b/packages/gguf/src/gguf.spec.ts index 5e1d08226..58852dbee 100644 --- a/packages/gguf/src/gguf.spec.ts +++ b/packages/gguf/src/gguf.spec.ts @@ -33,7 +33,7 @@ describe("gguf", () => { const arrayBuf = await res.arrayBuffer(); fs.writeFileSync(".cache/model.gguf", Buffer.from(arrayBuf)); } - }); + }, 30_000); it("should parse a llama2 7b", async () => { const { metadata, tensorInfos } = await gguf(URL_LLAMA);