Skip to content

Commit 8a69d7d

Browse files
committed
fix test case
1 parent e0a8f36 commit 8a69d7d

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

packages/tasks/src/local-apps.spec.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ describe("local-apps", () => {
1313
const snippet = snippetFunc(model);
1414

1515
expect(snippet[0].content).toEqual(`# Load and run the model:
16-
llama-cli \\
17-
--hf-repo "bartowski/Llama-3.2-3B-Instruct-GGUF" \\
18-
--hf-file {{GGUF_FILE}} \\
19-
-p "You are a helpful assistant" \\
20-
--conversation`);
16+
llama-cli -hf bartowski/Llama-3.2-3B-Instruct-GGUF`);
2117
});
2218

2319
it("llama.cpp non-conversational", async () => {
@@ -30,9 +26,7 @@ llama-cli \\
3026
const snippet = snippetFunc(model);
3127

3228
expect(snippet[0].content).toEqual(`# Load and run the model:
33-
llama-cli \\
34-
--hf-repo "mlabonne/gemma-2b-GGUF" \\
35-
--hf-file {{GGUF_FILE}} \\
29+
llama-cli -hf mlabonne/gemma-2b-GGUF \\
3630
-p "Once upon a time,"`);
3731
});
3832

0 commit comments

Comments
 (0)