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 656fc6e commit d8dafa2Copy full SHA for d8dafa2
packages/tasks/src/local-apps.ts
@@ -81,10 +81,13 @@ const snippetLlamacpp = (model: ModelData): Snippet[] => {
81
{
82
title: "Build from source code",
83
setup: [
84
- // prettier-ignore
+ "# Install required packages",
85
+ "sudo apt install build-essential libcurl4-openssl-dev",
86
+ "",
87
+ "# Clone and build",
88
"git clone https://github.com/ggerganov/llama.cpp.git",
89
"cd llama.cpp",
- "LLAMA_CURL=1 make",
90
+ "LLAMA_CURL=1 make -j llama-cli",
91
].join("\n"),
92
command: command("./llama-cli"),
93
},
0 commit comments