Skip to content

Commit 185b9a9

Browse files
committed
feat(snippet): update llama.cpp snippet to include windows (winget) install
1 parent 91003db commit 185b9a9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,15 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
117117
};
118118
return [
119119
{
120-
title: "Install from brew",
120+
title: "Install from brew (MacOS)",
121121
setup: "brew install llama.cpp",
122122
content: command("llama-cli"),
123123
},
124+
{
125+
title: "Install from WinGet (Windows)",
126+
setup: "winget install llama.cpp",
127+
content: command("llama-cli"),
128+
},
124129
{
125130
title: "Use pre-built binary",
126131
setup: [

0 commit comments

Comments
 (0)