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 e7c176c commit 441a8ceCopy full SHA for 441a8ce
.github/workflows/build.yml
@@ -443,6 +443,8 @@ jobs:
443
run: npm run dev:setup:downloadAllTestModels
444
445
- name: Run model dependent tests
446
+ env:
447
+ NODE_OPTIONS: "--max-old-space-size=4096"
448
run: npm run test:modelDependent
449
450
release:
test/modelDependent/functionary/sanity.test.ts
@@ -13,7 +13,9 @@ describe("functionary", () => {
13
modelPath,
14
checkTensors: true
15
});
16
- const context = await model.createContext();
+ const context = await model.createContext({
17
+ contextSize: 2048
18
+ });
19
const chatSession = new LlamaChatSession({
20
contextSequence: context.getSequence()
21
0 commit comments