* add models for /update endpoint * add logic for identifying out of date hf models * add endpoint for updating hf models * add relevant field to GgufVariantDetail * make exception handling better * add update_available flag for cached_models, and moved /update endpoint from inference -> models * hook up /update endpoint on the frontend * implement update scenarios for the model picker * fix bug where downloaded flag for an older revision was being wrongly set to false * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix import and make hf calls async * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * remove has_vision from UpdateRequest * fix ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * clear cancel event before updating gguf variant * set _cancel_event back if it was set initially * add hf_token to get_paths_info * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * studio: harden model update endpoint and update checks - update_hf_model: pass snapshot_download local_dir (local_path is not a valid kwarg and 500s when updating bicodec audio models) - get_gguf_variants: wrap the remote update check so a network, rate-limit, gated, or offline failure degrades to "no update info" instead of failing the whole variant listing, matching list_cached_models - add regression tests for both paths * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: HF model update detection and Update action for cached models Surface an "Update available" cue and a managed Update action for cached on-device models. /api/hub/update-status compares each cached main GGUF file's local blobs against the remote main revision using set membership across all cached revisions, so a repo that was already updated (and still holds the old snapshot alongside the new one) is not falsely flagged. The Update action re-downloads through the download manager so it shows in the Downloads panel with progress and cancel. The frontend wires the Update button into the GGUF, on-device, and model-selector cards and keeps the quant label fully visible when the action buttons crowd the row. Adds regression tests for the multi-revision update check. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: accept force_download kwarg in hf_xet_fallback test double The download seam now passes force_download to the attempt callable; the _FakeAttempt mock did not accept it, failing 6 tests with TypeError. Add the keyword (default False) so the scripted-results double matches the seam. * Fix Studio model update regressions * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Address Studio update review feedback * Address Studio update edge cases * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Share GGUF update status helper * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix GGUF update detection and cache cleanup * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix cached GGUF update badges --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: shimmyshimmer <107991372+shimmyshimmer@users.noreply.github.com> Co-authored-by: Etherll <61019402+Etherll@users.noreply.github.com> Co-authored-by: Lee Jackson <130007945+Imagineer99@users.noreply.github.com>
206 lines
7.5 KiB
Python
206 lines
7.5 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Optional, Sequence
|
|
|
|
from hub.utils.download_manifest import ExpectedFile
|
|
from hub.utils.gguf import (
|
|
extract_quant_label,
|
|
is_big_endian_gguf_path,
|
|
is_gguf_filename,
|
|
is_mmproj_filename,
|
|
is_mtp_drafter_path,
|
|
)
|
|
|
|
|
|
@dataclass(frozen = True)
|
|
class GgufVariantPlan:
|
|
main_filenames: frozenset[str]
|
|
target_filenames: tuple[str, ...]
|
|
main_hashes: frozenset[str]
|
|
required_hashes: frozenset[str]
|
|
companion_hashes: frozenset[str]
|
|
mmproj_filenames: frozenset[str]
|
|
mmproj_hashes: frozenset[str]
|
|
expected_files: tuple[ExpectedFile, ...]
|
|
main_size_bytes: int
|
|
download_size_bytes: int
|
|
|
|
|
|
def sibling_sha256(sibling) -> Optional[str]:
|
|
lfs = getattr(sibling, "lfs", None)
|
|
if isinstance(lfs, dict):
|
|
value = lfs.get("sha256")
|
|
else:
|
|
value = getattr(lfs, "sha256", None)
|
|
if isinstance(value, str) and value:
|
|
return value
|
|
blob_id = getattr(sibling, "blob_id", None)
|
|
return blob_id if isinstance(blob_id, str) and blob_id else None
|
|
|
|
|
|
def sibling_size(sibling) -> int:
|
|
size = getattr(sibling, "size", 0) or 0
|
|
try:
|
|
return int(size)
|
|
except (TypeError, ValueError):
|
|
return 0
|
|
|
|
|
|
def expected_file_from_sibling(sibling) -> Optional[ExpectedFile]:
|
|
name = getattr(sibling, "rfilename", None)
|
|
if not isinstance(name, str):
|
|
return None
|
|
return ExpectedFile(
|
|
path = name,
|
|
size = sibling_size(sibling),
|
|
sha256 = sibling_sha256(sibling),
|
|
)
|
|
|
|
|
|
def is_companion_gguf_path(path: str) -> bool:
|
|
"""Companion (non-main) GGUF downloaded alongside a variant: the vision
|
|
mmproj or the separate MTP drafter (Gemma 4)."""
|
|
return is_gguf_filename(path) and (is_mmproj_filename(path) or is_mtp_drafter_path(path))
|
|
|
|
|
|
def is_main_gguf_variant_path(path: str, variant: str) -> bool:
|
|
return (
|
|
is_gguf_filename(path)
|
|
and not is_mmproj_filename(path)
|
|
and not is_mtp_drafter_path(path)
|
|
and not is_big_endian_gguf_path(path, variant)
|
|
and extract_quant_label(path).lower() == variant.lower()
|
|
)
|
|
|
|
|
|
def _gguf_rfilename(sibling) -> Optional[str]:
|
|
"""The sibling's rfilename when it is a GGUF, else None."""
|
|
name = getattr(sibling, "rfilename", None)
|
|
if isinstance(name, str) and is_gguf_filename(name):
|
|
return name
|
|
return None
|
|
|
|
|
|
def mmproj_siblings(siblings: Sequence) -> list:
|
|
return [s for s in siblings if (name := _gguf_rfilename(s)) and is_mmproj_filename(name)]
|
|
|
|
|
|
def preferred_mmproj_sibling(siblings: Sequence) -> Optional[object]:
|
|
candidates = mmproj_siblings(siblings)
|
|
if not candidates:
|
|
return None
|
|
return next(
|
|
(s for s in candidates if extract_quant_label(getattr(s, "rfilename")).upper() == "F16"),
|
|
candidates[0],
|
|
)
|
|
|
|
|
|
def preferred_mtp_sibling(siblings: Sequence) -> Optional[object]:
|
|
"""The separate MTP drafter to fetch with every variant: the repo-root
|
|
``mtp-*.gguf`` copy unsloth ships for llama.cpp ``-hf`` auto-discovery
|
|
(Gemma 4). Same pick as the loader's drafter resolution (``mtp-`` basename
|
|
prefix, first in sort order) so download and load resolve the same file;
|
|
the higher-precision ``MTP/`` subdir copies are for explicit selection and
|
|
are not auto-fetched. None for repos with the head baked into the main
|
|
GGUF (Qwen)."""
|
|
candidates = sorted(
|
|
(
|
|
s
|
|
for s in siblings
|
|
if (name := _gguf_rfilename(s)) and name.lower().rsplit("/", 1)[-1].startswith("mtp-")
|
|
),
|
|
key = lambda s: getattr(s, "rfilename"),
|
|
)
|
|
return candidates[0] if candidates else None
|
|
|
|
|
|
def build_gguf_variant_plans(siblings: Sequence) -> dict[str, GgufVariantPlan]:
|
|
main: dict[str, list] = {}
|
|
all_mmproj = mmproj_siblings(siblings)
|
|
all_mmproj_filenames = frozenset(
|
|
getattr(s, "rfilename")
|
|
for s in all_mmproj
|
|
if isinstance(getattr(s, "rfilename", None), str)
|
|
)
|
|
all_mmproj_hashes = frozenset(h for h in (sibling_sha256(s) for s in all_mmproj) if h)
|
|
companion = preferred_mmproj_sibling(siblings)
|
|
companion_expected = expected_file_from_sibling(companion) if companion is not None else None
|
|
mtp_sibling = preferred_mtp_sibling(siblings)
|
|
mtp_expected = expected_file_from_sibling(mtp_sibling) if mtp_sibling is not None else None
|
|
companions_expected = tuple(
|
|
file for file in (companion_expected, mtp_expected) if file is not None
|
|
)
|
|
|
|
for sibling in siblings:
|
|
name = _gguf_rfilename(sibling)
|
|
if name is None:
|
|
continue
|
|
# Companions are folded into every plan below; keep them out of the
|
|
# quant grouping so a drafter never lands in a variant's main files
|
|
# (the root mtp-*.gguf carries a quant label, e.g. Q8_0).
|
|
if is_mmproj_filename(name) or is_mtp_drafter_path(name):
|
|
continue
|
|
quant = extract_quant_label(name).lower()
|
|
if is_big_endian_gguf_path(name, quant):
|
|
continue
|
|
main.setdefault(quant, []).append(sibling)
|
|
|
|
plans: dict[str, GgufVariantPlan] = {}
|
|
for quant, target_main_siblings in main.items():
|
|
main_expected = tuple(
|
|
file
|
|
for sibling in target_main_siblings
|
|
if (file := expected_file_from_sibling(sibling)) is not None
|
|
)
|
|
expected_files = (*main_expected, *companions_expected)
|
|
plans[quant] = plan_from_expected_files(
|
|
quant,
|
|
expected_files,
|
|
all_mmproj_filenames = all_mmproj_filenames,
|
|
all_mmproj_hashes = all_mmproj_hashes,
|
|
)
|
|
return plans
|
|
|
|
|
|
def plan_from_expected_files(
|
|
variant: str,
|
|
expected_files: Sequence[ExpectedFile],
|
|
*,
|
|
all_mmproj_filenames: frozenset[str] | None = None,
|
|
all_mmproj_hashes: frozenset[str] | None = None,
|
|
) -> GgufVariantPlan:
|
|
expected = tuple(expected_files)
|
|
main_files = tuple(file for file in expected if is_main_gguf_variant_path(file.path, variant))
|
|
companion_files = tuple(file for file in expected if is_companion_gguf_path(file.path))
|
|
# Manifest-resume fallback for the mmproj fields below: companion_files
|
|
# also holds the MTP drafter, so keep an mmproj-only view.
|
|
mmproj_files = tuple(file for file in companion_files if is_mmproj_filename(file.path))
|
|
main_hashes = frozenset(file.sha256 for file in main_files if file.sha256)
|
|
companion_hashes = frozenset(file.sha256 for file in companion_files if file.sha256)
|
|
required_hashes = frozenset(file.sha256 for file in expected if file.sha256)
|
|
main_size = sum(max(0, int(file.size or 0)) for file in main_files)
|
|
download_size = sum(max(0, int(file.size or 0)) for file in expected)
|
|
return GgufVariantPlan(
|
|
main_filenames = frozenset(file.path for file in main_files),
|
|
target_filenames = tuple(file.path for file in expected),
|
|
main_hashes = main_hashes,
|
|
required_hashes = required_hashes,
|
|
companion_hashes = companion_hashes,
|
|
mmproj_filenames = (
|
|
all_mmproj_filenames
|
|
if all_mmproj_filenames is not None
|
|
else frozenset(file.path for file in mmproj_files)
|
|
),
|
|
mmproj_hashes = (
|
|
all_mmproj_hashes
|
|
if all_mmproj_hashes is not None
|
|
else frozenset(file.sha256 for file in mmproj_files if file.sha256)
|
|
),
|
|
expected_files = expected,
|
|
main_size_bytes = main_size,
|
|
download_size_bytes = download_size,
|
|
)
|