fix(studio): revert llama.cpp default tag to latest
ggml-org/llama.cpp b8637 (latest release) now includes Gemma 4 support (ggml-org/llama.cpp#21309). Revert the temporary "master" default from #4790 back to "latest" so the prebuilt resolver picks the newest release automatically. This eliminates the HTTP 422 errors from the prebuilt resolver (which could not find a release matching "master"), avoids unnecessary source builds, and restores prebuilt binary downloads on all platforms.
This commit is contained in:
parent
7023e2a4ff
commit
8ecfb07616
3 changed files with 3 additions and 3 deletions
|
|
@ -59,7 +59,7 @@ def env_int(name: str, default: int, *, minimum: int | None = None) -> int:
|
|||
return value
|
||||
|
||||
|
||||
DEFAULT_LLAMA_TAG = os.environ.get("UNSLOTH_LLAMA_TAG", "master")
|
||||
DEFAULT_LLAMA_TAG = os.environ.get("UNSLOTH_LLAMA_TAG", "latest")
|
||||
# Force all installs to use mainline llama.cpp from ggml-org.
|
||||
# Previously: DEFAULT_PUBLISHED_REPO = os.environ.get("UNSLOTH_LLAMA_RELEASE_REPO", "unslothai/llama.cpp")
|
||||
DEFAULT_PUBLISHED_REPO = "ggml-org/llama.cpp"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ $PackageDir = Split-Path -Parent $ScriptDir
|
|||
# --------------------------------------------------------------------------
|
||||
$DefaultLlamaPrForce = ""
|
||||
$DefaultLlamaSource = "https://github.com/ggml-org/llama.cpp"
|
||||
$DefaultLlamaTag = "master"
|
||||
$DefaultLlamaTag = "latest"
|
||||
|
||||
# Verbose can be enabled either by CLI flag or by UNSLOTH_VERBOSE=1.
|
||||
$script:UnslothVerbose = ($env:UNSLOTH_VERBOSE -eq '1')
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ RULE=$(printf '\342\224\200%.0s' {1..52})
|
|||
# ──────────────────────────────────────────────────────────────────────────
|
||||
_DEFAULT_LLAMA_PR_FORCE=""
|
||||
_DEFAULT_LLAMA_SOURCE="https://github.com/ggml-org/llama.cpp"
|
||||
_DEFAULT_LLAMA_TAG="master"
|
||||
_DEFAULT_LLAMA_TAG="latest"
|
||||
|
||||
# ── Colors (same palette as startup_banner / install_python_stack) ──
|
||||
if [ -n "${NO_COLOR:-}" ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue