Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Wauplin authored Dec 5, 2024
2 parents 1794bd8 + 32365c0 commit 0baaa71
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/tasks/src/local-apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,10 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
setup: [
"git clone https://github.com/ggerganov/llama.cpp.git",
"cd llama.cpp",
"LLAMA_CURL=1 make llama-cli",
"cmake -B build -DLLAMA_CURL=ON",
"cmake --build build -j --target llama-cli",
].join("\n"),
content: command("./llama-cli"),
content: command("./build/bin/llama-cli"),
},
];
};
Expand Down

0 comments on commit 0baaa71

Please sign in to comment.