Skip to content

Commit 6aa4ee6

Browse files
committed
fix test.
1 parent 9f9e8bf commit 6aa4ee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function getQuantTag(filepath?: string): string {
108108
const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[] => {
109109
const command = (binary: string) => {
110110
const snippet = ["# Load and run the model:", `${binary} -hf ${model.id}${getQuantTag(filepath)}`];
111-
return snippet;
111+
return snippet.join("\n");
112112
};
113113
return [
114114
{

0 commit comments

Comments
 (0)