File size: 21,900 Bytes
6e53100 4c94cd0 6e53100 542fcf0 6e53100 4c94cd0 f667ce6 40defad 6e53100 40defad 6e53100 721e47f 93ec453 721e47f 6e53100 710ab78 40defad 710ab78 40defad 710ab78 40defad f667ce6 4c94cd0 f667ce6 40defad 710ab78 6e53100 40defad 6e53100 f667ce6 710ab78 f667ce6 4c94cd0 710ab78 93ec453 710ab78 93ec453 6e53100 93ec453 6e53100 93ec453 6e53100 24de7b1 710ab78 6e53100 93ec453 592d705 6e53100 592d705 6e53100 592d705 6e53100 592d705 01a3754 6e53100 b40cda0 6e53100 704b329 6e53100 b40cda0 6e53100 40defad 6e53100 40defad 6e53100 b40cda0 6e53100 721e47f 6e53100 b40cda0 6e53100 704b329 6e53100 b40cda0 6e53100 b40cda0 6e53100 704b329 f667ce6 6e53100 df6ab80 6e53100 4e83d88 6e53100 25d87ec fc20b4f 6e53100 4e83d88 6e53100 40defad 6e53100 40defad 6e53100 4e83d88 25d87ec df6ab80 fc20b4f 75671bd 6e53100 df6ab80 6e53100 4e83d88 6e53100 4e83d88 25d87ec 6e53100 fc20b4f f667ce6 6e53100 945f24f 542fcf0 945f24f 542fcf0 945f24f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | from __future__ import annotations
import os
import re
from typing import Any
from huggingface_hub import Volume, fetch_job_logs, inspect_job, run_job
from .config import bucket_uri_from_source, user_bucket_source, settings
from .version import resolve_app_version
from .eval_config import effective_eval_config
from .bucket import assert_user_bucket_ready, write_text
from .runs import make_run_id, utc_now_iso, validate_run_id
from .worker_payload import (
universal_model_card_worker_script,
validate_existing_space_worker_script,
python_decode_and_run_command,
)
SPACE_SLUG_RE = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._-]{1,95}$")
AUTO_SPACE_HARDWARE_CHOICES = {"zero-a10g", "cpu-basic", "t4-small", "t4-medium", "a10g-small", "a10g-large", "l4x1", "l40sx1"}
# v198.20: Jobs running ASF/Pi are intentionally CPU-only. GPU hardware is
# reserved for generated target Spaces, not for the Launch Build Job itself.
CPU_JOB_FLAVOR_CHOICES = {"cpu-upgrade", "cpu-basic"}
DEFAULT_JOB_FLAVOR = "cpu-upgrade"
FALLBACK_JOB_FLAVOR = "cpu-basic"
DEFAULT_PREFERRED_SPACE_HARDWARE = "zero-a10g"
DEFAULT_FALLBACK_SPACE_HARDWARE = "a10g-large"
def normalize_auto_space_hardware(value: str | None, *, default: str) -> str:
"""Return a hardware flavor safe for automatic Space fallback.
Expensive or restricted tiers such as A100/H200 are intentionally not used
by the automatic fallback path. Users can still select them manually in the
generated Space settings if their account or organization is allowed to.
"""
candidate = (value or default).strip()
return candidate if candidate in AUTO_SPACE_HARDWARE_CHOICES else default
def _runs_prefix() -> str:
return settings.bucket_runs_prefix.strip().strip("/") or "runs"
def _runs_mount_path() -> str:
return f"{settings.bucket_mount.rstrip('/')}/{_runs_prefix()}"
def _worker_script_bucket_path(*, bucket_source: str, run_id: str) -> str:
return f"{bucket_uri_from_source(bucket_source)}/{_runs_prefix()}/{run_id}/_worker.py"
def _worker_script_mount_path(*, run_id: str) -> str:
return f"{_runs_mount_path().rstrip('/')}/{run_id}/_worker.py"
def _persist_worker_script(*, token: str, bucket_source: str, run_id: str, script: str) -> str:
"""Persist the Job worker script in the mounted bucket before launch.
Earlier versions passed the full worker through WORKER_SCRIPT_B64. As the
agentic core grew, that environment payload became large enough for HF Jobs
to fail at process start with `argument list too long`. Storing the worker
as a run artifact keeps the Job command/env small and makes the launched
code auditable next to the run artifacts.
"""
write_text(_worker_script_bucket_path(bucket_source=bucket_source, run_id=run_id), script, token=token)
return _worker_script_mount_path(run_id=run_id)
def _job_eval_config() -> dict[str, Any]:
# Eval archive is published by the ASF backend, not by user Jobs.
# Jobs only need to know whether to write a local anonymized eval_record.json
# into the user's run bucket. Environment variables still work as an admin
# override for the backend publisher, but they no longer add a second Job volume.
if settings.eval_enabled and settings.eval_bucket_source:
return {
"enabled": True,
"bucket_source": settings.eval_bucket_source,
"bucket_path": settings.eval_bucket_path,
"job_mount_path": settings.eval_bucket_mount,
"salt": settings.eval_salt,
"include_redacted_tails": bool(settings.eval_include_redacted_tails),
"include_model_id": bool(os.getenv("ASF_EVAL_INCLUDE_MODEL_ID", "false").strip().lower() in {"1", "true", "yes", "on"}),
"publish_mode": "backend",
}
return effective_eval_config()
def _base_env(*, run_id: str, username: str, bucket_source: str, worker_script_path: str) -> dict[str, str]:
env = {
"RUN_ID": run_id,
"HF_USERNAME": username or "unknown",
"BUCKET_SOURCE": bucket_source,
"OUTPUT_ROOT": settings.bucket_mount,
"WORKER_SCRIPT_PATH": worker_script_path,
"LAUNCHED_AT": utc_now_iso(),
}
eval_cfg = _job_eval_config()
if eval_cfg.get("enabled"):
env.update({
"ASF_EVAL_RECORD_ENABLED": "true",
"ASF_EVAL_PUBLISH_MODE": "backend",
"ASF_EVAL_SALT": str(eval_cfg.get("salt") or ""),
"ASF_EVAL_INCLUDE_REDACTED_TAILS": "true" if eval_cfg.get("include_redacted_tails") else "false",
"ASF_EVAL_INCLUDE_MODEL_ID": "true" if eval_cfg.get("include_model_id") else "false",
"ASF_VERSION": resolve_app_version(getattr(settings, "app_version", None)),
})
return env
def normalize_job_flavor(value: str | None, *, default: str = DEFAULT_JOB_FLAVOR) -> str:
"""Return a CPU-only HF Job flavor for the ASF/Pi Launch Build job.
Target Space hardware remains independent and may still use ZeroGPU or fixed
GPUs. This normalization prevents accidental GPU Job launches when an old
env var such as ``SPACE_FACTORY_JOB_FLAVOR=a10g-small`` is still present.
"""
candidate = (value or default or DEFAULT_JOB_FLAVOR).strip()
return candidate if candidate in CPU_JOB_FLAVOR_CHOICES else DEFAULT_JOB_FLAVOR
def _run_job_with_flavor(*, token: str, env: dict[str, str], bucket_source: str, flavor: str, timeout: str) -> Any:
return run_job(
image=settings.job_image,
command=python_decode_and_run_command(),
flavor=flavor,
timeout=timeout,
env=env,
# Keep the real token in Job secrets, not regular env metadata. Expose
# both common aliases so Pi/HF tooling can authenticate inside the Job.
secrets={"HF_TOKEN": token, "HUGGING_FACE_HUB_TOKEN": token},
# Mount only the run-artifact prefix. The API persists `_worker.py` under
# `hf://buckets/<source>/runs/<run_id>/_worker.py` before launching, so
# the `runs/` prefix exists by the time the Job starts. Inside the Job,
# that same prefix is mounted at `/output/runs`, keeping worker paths
# stable as `/output/runs/<run_id>/...` without exposing the whole bucket.
volumes=_job_volumes(bucket_source),
token=token,
)
def _job_volumes(bucket_source: str) -> list[Volume]:
# User Jobs mount only the signed-in user's run bucket. The operator eval
# archive is private and mounted on the ASF Space itself; the backend copies
# anonymized records there after reading runs/<run_id>/eval_record.json.
return [Volume(type="bucket", source=bucket_source, path=_runs_prefix(), mount_path=_runs_mount_path())]
def _launch_job(*, token: str, env: dict[str, str], bucket_source: str, flavor: str | None = None, timeout: str | None = None) -> Any:
requested_flavor = normalize_job_flavor(flavor or settings.job_flavor)
effective_timeout = timeout or settings.job_timeout
try:
return _run_job_with_flavor(
token=token,
env=env,
bucket_source=bucket_source,
flavor=requested_flavor,
timeout=effective_timeout,
)
except Exception:
if requested_flavor == FALLBACK_JOB_FLAVOR:
raise
return _run_job_with_flavor(
token=token,
env=env,
bucket_source=bucket_source,
flavor=FALLBACK_JOB_FLAVOR,
timeout=effective_timeout,
)
def _job_field(job: Any, name: str, default: Any = None) -> Any:
if isinstance(job, dict):
return job.get(name, default)
return getattr(job, name, default)
def _job_status_stage(job: Any) -> Any:
status = _job_field(job, "status")
if isinstance(status, dict):
return status.get("stage") or status.get("status") or status.get("state")
return getattr(status, "stage", None) or getattr(status, "status", None) or getattr(status, "state", None)
def _job_url_from_id(*, job_id: str | None, bucket_source: str) -> str:
if not job_id:
return ""
owner = str(bucket_source or "").split("/", 1)[0].strip()
return f"https://huggingface.co/jobs/{owner}/{job_id}" if owner else ""
def _job_result(job: Any, *, run_id: str, kind: str, bucket_source: str, extra: dict[str, Any] | None = None) -> dict[str, Any]:
job_id = str(_job_field(job, "id") or _job_field(job, "job_id") or _job_field(job, "jobId") or "").strip()
job_url = str(_job_field(job, "url") or _job_field(job, "job_url") or "").strip()
if not job_url:
job_url = _job_url_from_id(job_id=job_id, bucket_source=bucket_source)
payload: dict[str, Any] = {
"run_id": run_id,
"kind": kind,
"job_id": job_id,
"job_url": job_url,
"status": _job_status_stage(job),
"bucket_source": bucket_source,
"bucket_uri": bucket_uri_from_source(bucket_source),
"created_by": str(bucket_source or "").split("/", 1)[0].strip(),
"created_at": str(_job_field(job, "created_at") or utc_now_iso()),
"started_at": str(_job_field(job, "started_at") or _job_field(job, "created_at") or utc_now_iso()),
}
if extra:
payload.update(extra)
return payload
def normalize_target_space(*, username: str, target_slug: str | None, run_id: str) -> str:
"""Return `username/slug`, constrained to the signed-in user's namespace."""
slug = (target_slug or "").strip()
if not slug:
slug = f"space-factory-{run_id}".lower()[:80]
if "/" in slug:
namespace, repo = slug.split("/", 1)
if namespace != username:
raise ValueError("The target Space must be created in your own namespace.")
slug = repo
if not SPACE_SLUG_RE.match(slug):
raise ValueError("Invalid target Space name. Use letters, numbers, dots, underscores, or dashes.")
return f"{username}/{slug}"
def _clean_repo_id(value: str | None, *, repo_kind: str) -> str:
cleaned = (value or "").strip()
cleaned = cleaned.replace("https://huggingface.co/spaces/", "")
cleaned = cleaned.replace("https://huggingface.co/", "")
cleaned = cleaned.strip("/")
if "/" not in cleaned:
raise ValueError(f"{repo_kind} must look like owner/name or a Hugging Face URL.")
return cleaned
def launch_universal_model_card_job(
*,
token: str,
username: str,
target_slug: str | None = None,
model_id: str | None = None,
pi_model: str | None = None,
preferred_space_hardware: str | None = None,
fallback_space_hardware: str | None = None,
allow_fixed_gpu_fallback: bool = True,
try_zero_gpu_first: bool = True,
implementation_mode: str | None = None,
expected_output_type: str | None = None,
run_id: str | None = None,
bucket_name: str | None = None,
) -> dict[str, Any]:
"""Launch the public product builder: model card → private Space attempt."""
if not token:
raise ValueError("Missing OAuth token. Please sign in with Hugging Face first.")
safe_run_id = validate_run_id(run_id) if run_id else make_run_id("universal")
target_space_auto_generated = not bool((target_slug or "").strip())
target_space_id = normalize_target_space(username=username, target_slug=target_slug, run_id=safe_run_id)
clean_model_id = _clean_repo_id(model_id, repo_kind="Model ID")
bucket_source = user_bucket_source(username=username, bucket_name=bucket_name)
assert_user_bucket_ready(username=username, bucket_name=bucket_name, token=token)
worker_script_path = _persist_worker_script(
token=token,
bucket_source=bucket_source,
run_id=safe_run_id,
script=universal_model_card_worker_script(),
)
env = _base_env(
run_id=safe_run_id,
username=username,
bucket_source=bucket_source,
worker_script_path=worker_script_path,
)
env["TARGET_SPACE_ID"] = target_space_id
env["TARGET_SPACE_AUTO_GENERATED"] = "true" if target_space_auto_generated else "false"
env["MODEL_ID"] = clean_model_id
env["PI_MODEL"] = (pi_model or "Qwen/Qwen3-Coder-Next").strip()
env["PREFERRED_SPACE_HARDWARE"] = normalize_auto_space_hardware(preferred_space_hardware, default=DEFAULT_PREFERRED_SPACE_HARDWARE)
env["FALLBACK_SPACE_HARDWARE"] = normalize_auto_space_hardware(fallback_space_hardware, default=DEFAULT_FALLBACK_SPACE_HARDWARE)
env["ALLOW_FIXED_GPU_FALLBACK"] = "true" if allow_fixed_gpu_fallback else "false"
env["TRY_ZERO_GPU_FIRST"] = "true" if try_zero_gpu_first else "false"
env["IMPLEMENTATION_MODE"] = (implementation_mode or "full-inference-gated").strip()
env["EXPECTED_OUTPUT_TYPE"] = (expected_output_type or "any").strip()
job = _launch_job(token=token, env=env, bucket_source=bucket_source, timeout="60m")
return _job_result(
job,
run_id=safe_run_id,
kind="universal_model_card_builder",
bucket_source=bucket_source,
extra={
"target_space": target_space_id,
"target_space_url": f"https://huggingface.co/spaces/{target_space_id}",
"target_space_auto_generated": target_space_auto_generated,
"model_id": clean_model_id,
"pi_model": env["PI_MODEL"],
"preferred_space_hardware": env["PREFERRED_SPACE_HARDWARE"],
"fallback_space_hardware": env["FALLBACK_SPACE_HARDWARE"],
"allow_fixed_gpu_fallback": allow_fixed_gpu_fallback,
"try_zero_gpu_first": try_zero_gpu_first,
"implementation_mode": env["IMPLEMENTATION_MODE"],
"expected_output_type": env["EXPECTED_OUTPUT_TYPE"],
"anonymous_eval_enabled": bool(_job_eval_config().get("enabled")),
"anonymous_eval_publish_mode": "backend",
},
)
VALIDATION_PAYLOAD_JSON_MAX_BYTES = 16_000
VALIDATION_TIMEOUT_MIN_SECONDS = 30
VALIDATION_TIMEOUT_MAX_SECONDS = 3600
def clamp_validation_timeout_seconds(value: int | float | str | None, *, default: int = 1800) -> int:
"""Return a safe validation timeout bounded for browser/API inputs."""
try:
seconds = int(float(value if value is not None and str(value).strip() != "" else default))
except Exception as exc: # noqa: BLE001
raise ValueError("live_timeout_seconds must be a number of seconds") from exc
return max(VALIDATION_TIMEOUT_MIN_SECONDS, min(seconds, VALIDATION_TIMEOUT_MAX_SECONDS))
def ensure_validation_payload_json_fits_env(value: str | None, *, field_name: str) -> str:
"""Validate JSON payload size before passing it through HF Job env vars."""
text = (value or "").strip()
size = len(text.encode("utf-8"))
if size > VALIDATION_PAYLOAD_JSON_MAX_BYTES:
raise ValueError(
f"{field_name} is too large for validation launch ({size} bytes; "
f"max {VALIDATION_PAYLOAD_JSON_MAX_BYTES} bytes). Store large data in the Space or bucket instead."
)
return text
def launch_validate_existing_space_job(
*,
token: str,
username: str,
target_space_id: str,
parent_build_run_id: str,
api_name: str | None = None,
test_args_json: str | None = None,
test_kwargs_json: str | None = None,
expected_output_type: str | None = None,
live_timeout_seconds: int = 1800,
validation_mode: str | None = None,
effective_status_on_success: str | None = None,
parent_replay_source_json: str | None = None,
validation_launch_payload_json: str | None = None,
run_id: str | None = None,
bucket_name: str | None = None,
) -> dict[str, Any]:
"""Launch the public product validator for an existing generated Space."""
if not token:
raise ValueError("Missing OAuth token. Please sign in with Hugging Face first.")
safe_run_id = validate_run_id(run_id) if run_id else make_run_id("validate")
parent_run = validate_run_id(parent_build_run_id)
target = _clean_repo_id(target_space_id, repo_kind="Target Space")
namespace, _ = target.split("/", 1)
if namespace != username:
raise ValueError("For this version, target Space validation is limited to your own namespace.")
bucket_source = user_bucket_source(username=username, bucket_name=bucket_name)
assert_user_bucket_ready(username=username, bucket_name=bucket_name, token=token)
worker_script_path = _persist_worker_script(
token=token,
bucket_source=bucket_source,
run_id=safe_run_id,
script=validate_existing_space_worker_script(),
)
env = _base_env(
run_id=safe_run_id,
username=username,
bucket_source=bucket_source,
worker_script_path=worker_script_path,
)
env["TARGET_SPACE_ID"] = target
env["PARENT_BUILD_RUN_ID"] = parent_run
env["VALIDATION_LINK_MODE"] = "build_run"
env["SPACE_TEST_POLICY_MODE"] = (validation_mode or "complete").strip()
env["EFFECTIVE_STATUS_ON_SUCCESS"] = (effective_status_on_success or "validated_after_manual_space_test").strip()
env["API_NAME"] = (api_name if api_name is not None else "/generate").strip()
env["ENDPOINT_DISCOVERY_REQUIRED"] = "true" if not env["API_NAME"] else "false"
env["TEST_ARGS_JSON"] = ensure_validation_payload_json_fits_env(test_args_json or '["a cinematic robot cat astronaut, detailed, studio lighting"]', field_name="test_args_json")
env["TEST_KWARGS_JSON"] = ensure_validation_payload_json_fits_env(test_kwargs_json or "{}", field_name="test_kwargs_json")
if parent_replay_source_json:
env["PARENT_REPLAY_SOURCE_JSON"] = ensure_validation_payload_json_fits_env(parent_replay_source_json, field_name="parent_replay_source_json")
if validation_launch_payload_json:
env["VALIDATION_LAUNCH_PAYLOAD_JSON"] = ensure_validation_payload_json_fits_env(validation_launch_payload_json, field_name="validation_launch_payload_json")
try:
_launch_payload = json.loads(validation_launch_payload_json)
if isinstance(_launch_payload, dict) and _launch_payload.get("payload_source"):
env["PAYLOAD_SOURCE"] = str(_launch_payload.get("payload_source") or "")
except Exception:
pass
if parent_replay_source_json:
env["PAYLOAD_SOURCE"] = "parent_automatic_smoke"
env["EXPECTED_OUTPUT_TYPE"] = (expected_output_type or "image").strip()
env["LIVE_TIMEOUT_SECONDS"] = str(clamp_validation_timeout_seconds(live_timeout_seconds))
job = _launch_job(token=token, env=env, bucket_source=bucket_source, timeout="60m")
return _job_result(
job,
run_id=safe_run_id,
kind="linked_space_validation",
bucket_source=bucket_source,
extra={
"target_space": target,
"target_space_url": f"https://huggingface.co/spaces/{target}",
"parent_build_run_id": parent_run,
"source_kind": "build_run_prefill",
"linked_target_space": target,
"space_test_policy_mode": env.get("SPACE_TEST_POLICY_MODE"),
"effective_status_on_success": env.get("EFFECTIVE_STATUS_ON_SUCCESS"),
"api_name": env["API_NAME"] or "<discover>",
"endpoint_discovery_required": env.get("ENDPOINT_DISCOVERY_REQUIRED") == "true",
"expected_output_type": env["EXPECTED_OUTPUT_TYPE"],
"test_args_json": env["TEST_ARGS_JSON"],
"test_kwargs_json": env["TEST_KWARGS_JSON"],
"payload_source": env.get("PAYLOAD_SOURCE") or "",
"has_validation_launch_payload": bool(env.get("VALIDATION_LAUNCH_PAYLOAD_JSON")),
"anonymous_eval_enabled": bool(_job_eval_config().get("enabled")),
"anonymous_eval_publish_mode": "backend",
},
)
def inspect_job_safe(job_id: str, token: str | None = None) -> dict[str, Any]:
if not job_id:
return {"error": "Missing job_id"}
try:
info = inspect_job(job_id=job_id, token=token)
status = getattr(info, "status", None)
return {
"id": info.id,
"url": getattr(info, "url", None),
"stage": getattr(status, "stage", None),
"message": getattr(status, "message", None),
"flavor": getattr(info, "flavor", None),
"created_at": str(getattr(info, "created_at", "")),
"started_at": str(getattr(info, "started_at", "")),
"finished_at": str(getattr(info, "finished_at", "")),
}
except Exception as exc: # noqa: BLE001
return {"error": str(exc)}
def fetch_recent_logs_safe(job_id: str, token: str | None = None, max_lines: int = 120) -> str:
if not job_id:
return ""
try:
logs = list(fetch_job_logs(job_id=job_id, token=token))
return "\n".join(str(line).rstrip("\n") for line in logs[-max_lines:])
except Exception as exc: # noqa: BLE001
return f"Could not fetch job logs: {exc}"
def cancel_job_safe(job_id: str, *, namespace: str | None = None, token: str | None = None) -> dict[str, Any]:
"""Cancel a running HF Job. Returns a JSON-safe status payload.
Import cancel_job lazily so older cached Space environments do not crash the
whole app at import time. The endpoint reports a clear error if the installed
huggingface_hub build does not expose Jobs cancellation.
"""
if not job_id:
return {"ok": False, "error": "Missing job_id"}
try:
from huggingface_hub import cancel_job # type: ignore
except Exception as exc: # noqa: BLE001
return {"ok": False, "job_id": job_id, "error": f"huggingface_hub.cancel_job is unavailable: {exc}"}
try:
cancel_job(job_id=job_id, namespace=namespace, token=token)
return {"ok": True, "job_id": job_id, "status": "cancelled"}
except Exception as exc: # noqa: BLE001
return {"ok": False, "job_id": job_id, "error": str(exc)}
|