Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Daniel Han
8ecfb07616 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.
2026-04-02 18:48:37 +00:00
3 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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')

View file

@ -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