Repo
Contents
[
Hide
]
Repo is the GitHub repository name paired with Owner to form the source URL.
Quick reference
| Type | string |
| Default | "llama.cpp" |
| Category | Native binary source |
| Field on | BinaryManagerParameters.Repo |
What it does
Together with Owner, forms the GitHub path: github.com/<Owner>/<Repo>/releases/tag/<ReleaseTag>. The BinaryManager queries the GitHub API for the release listing and downloads the matching asset.
"llama.cpp"(default) — the upstream project. Correct for the defaultOwner = "ggml-org".- Different repo name — only if you host releases in a differently-named repository with byte-compatible binaries.
When to change it
| Scenario | Value |
|---|---|
| Default | "llama.cpp" |
| Enterprise mirror under a renamed repo | Mirror repo name |
Do not change unless you control a mirror.
Example
var preset = new Qwen25Preset();
// preset.BinaryManagerParameters.Repo = "llama.cpp"; // default
Interactions
Owner— paired.ReleaseTag— release selector.
What’s next
- Owner — repository owner.
- ReleaseTag — version pin.
- Binary manager hub — all binary-manager knobs.