Files
2026-07-13 12:37:06 +08:00

15 lines
349 B
PowerShell

param(
[string]$Repo = "https://github.com/ggml-org/llama.cpp.git",
[string]$Destination = "third_party/llama.cpp"
)
$ErrorActionPreference = "Stop"
if (Test-Path $Destination) {
Write-Host "llama.cpp already exists at $Destination"
exit 0
}
git clone --depth 1 $Repo $Destination
Write-Host "Fetched llama.cpp into $Destination"