Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/tasks/src/local-apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
{
title: "Install from brew",
setup: "brew install llama.cpp",
content: command("llama-cli"),
content: command("llama-server"),
},
{
title: "Install from WinGet (Windows)",
setup: "winget install llama.cpp",
content: command("llama-cli"),
content: command("llama-server"),
},
{
title: "Use pre-built binary",
Expand All @@ -133,17 +133,17 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
"# Download pre-built binary from:",
"# https://github.com/ggerganov/llama.cpp/releases",
].join("\n"),
content: command("./llama-cli"),
content: command("./llama-server"),
},
{
title: "Build from source code",
setup: [
"git clone https://github.com/ggerganov/llama.cpp.git",
"cd llama.cpp",
"cmake -B build -DLLAMA_CURL=ON",
"cmake --build build -j --target llama-cli",
"cmake --build build -j --target llama-server",
].join("\n"),
content: command("./build/bin/llama-cli"),
content: command("./build/bin/llama-server"),
},
];
};
Expand Down
Loading