Source profileQuality 90/100Review permissions

huggingface/skills/skills/hf-cloud-serving-image-selection/SKILL.md

hf-cloud-serving-image-selection

Pick the right serving container for a SageMaker model deployment and find its current image URI. Use this skill whenever about to deploy a model to a SageMaker endpoint and an image URI needs to be chosen — including when the user says "deploy this LLM", "host this HuggingFace model", "serve this fine-tuned model", "deploy this embedding model", "host a reranker", "serve a sentence-transformers model", or when about to hardcode any container URI in deployment code. HuggingFace-curated Deep Lear

Source repository stars
10,895
Declared platforms
0
Static risk flags
2
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

The serving container is the single thing most likely to break a SageMaker deployment that "looked correct on paper". Wrong container, stale tag, or the wrong AMI — all produce the same opaque Failed to pass health check error.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/huggingface/skills --skill "skills/hf-cloud-serving-image-selection"
    Safe inspection promptEditorial

    Inspect the Agent Skill "hf-cloud-serving-image-selection" from https://github.com/huggingface/skills/blob/32f8bb0928e95fc9d47ca9fbf69cbfbaf2bc2bda/skills/hf-cloud-serving-image-selection/SKILL.md at commit 32f8bb0928e95fc9d47ca9fbf69cbfbaf2bc2bda. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      For every family: read the URI from the AWS catalog page.

      Open https://aws.github.io/deep-learning-containers/reference/availableimages/Find the section for the right family (e.g. "HuggingFace vLLM Inference" for HuggingFace LLMs, "HuggingFace Text Embeddings Inference" for embeddings)Pick the newest row marked SageMaker for the platform column — newest within that family. Do not switch to another family's section because it lists a higher engine version (see "Rule zero")
    2. 02

      Rule zero: HuggingFace images always win

      When both a HuggingFace-curated family (huggingface-vllm, huggingface-vllm-omni, huggingface-sglang, tei, huggingface-pytorch-inference) and a generic family (vllm, vllm-omni, sglang, djl-inference) can serve the model, the HuggingFace one is mandatory, not preferred. The only v…

      Verified incompatibility — the model needs an architecture/modality/feature no available HuggingFace tag supports, confirmed against the catalog (not assumed).No HuggingFace tag exists in the target region and mirroring is not an option.The HuggingFace image is in "Known-broken images" below.
    3. 03

      Where image URIs come from

      Primary source: AWS's official Deep Learning Containers catalog.

      Primary source: AWS's official Deep Learning Containers catalog.URL: https://aws.github.io/deep-learning-containers/reference/availableimages/This page is AWS-maintained and lists every image family with example URIs, tags, CUDA versions, Python versions, and platform (SageMaker vs EC2/ECS/EKS). When picking a URI for a deployment, read it from this page dire…
    4. 04

      Quick decision

      HuggingFace-curated DLCs are mandatory when one is compatible (see "Rule zero"). huggingface-vllm is layered directly on the AWS vLLM DLC — identical SMVLLM env contract and the same cu130 AMI rule — and adds current transformers, current huggingfacehub + hfxet (avoids the XET-C…

      HuggingFace-curated DLCs are mandatory when one is compatible (see "Rule zero"). huggingface-vllm is layered directly on the AWS vLLM DLC — identical SMVLLM env contract and the same cu130 AMI rule — and adds current tr…Do not use TGI. Text Generation Inference is archived. Models released after the archive (Qwen3 most famously) fail ping health checks on TGI. Use vLLM instead. (The SageMaker SDK v3 agrees: since PR 5960, June 2026, it…Full reasoning for each family in references/model-to-image.md.
    5. 05

      Rerankers: TEI or vLLM?

      "Reranker" covers two very different architectures, and picking wrong wastes a full endpoint-creation cycle (20 min) before TEI rejects the model:

      Encoder cross-encoders (BAAI/bge-reranker-, mixedbread, most sentence-transformers rerankers) — BERT-family models with a classification head. config.json has architectures: [..ForSequenceClassification] on a TEI-suppor…Generative rerankers (Qwen/Qwen3-Reranker-, and similar causal-LM judges) — decoder LLMs that score relevance via the logprob of a yes/no token. config.json has architectures: [..ForCausalLM]. → HuggingFace vLLM, deploy…"Reranker" covers two very different architectures, and picking wrong wastes a full endpoint-creation cycle (20 min) before TEI rejects the model:

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 61

    The documentation includes network, browsing, or remote request actions.

    curl -s https://huggingface.co/<model-id>/raw/main/config.json

    Runs scripts

    medium · line 162

    The documentation asks the agent to run terminal commands or scripts.

    For images requiring `public.ecr.aws` access (less common): mirror to a private ECR repo in your account with `scripts/mirror_image.py` (cross-platform; needs Docker + the `aws` CLI). Run it from the shell where the AWS CLI works.

    Network access

    medium · line 183

    The documentation includes network, browsing, or remote request actions.

    curl -s https://api.github.com/repos/aws/deep-learning-containers/contents/docs/src/data/huggingface-vllm

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score90/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars10,895SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    huggingface/skills
    Skill path
    skills/hf-cloud-serving-image-selection/SKILL.md
    Commit
    32f8bb0928e95fc9d47ca9fbf69cbfbaf2bc2bda
    License
    Apache-2.0
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    Serving Image Selection

    The serving container is the single thing most likely to break a SageMaker deployment that "looked correct on paper". Wrong container, stale tag, or the wrong AMI — all produce the same opaque Failed to pass health check error.

    Rule zero: HuggingFace images always win

    When both a HuggingFace-curated family (huggingface-vllm, huggingface-vllm-omni, huggingface-sglang, tei, huggingface-pytorch-inference) and a generic family (vllm, vllm-omni, sglang, djl-inference) can serve the model, the HuggingFace one is mandatory, not preferred. The only valid reasons to use a generic image:

    1. Verified incompatibility — the model needs an architecture/modality/feature no available HuggingFace tag supports, confirmed against the catalog (not assumed).
    2. No HuggingFace tag exists in the target region and mirroring is not an option.
    3. The HuggingFace image is in "Known-broken images" below.

    A newer version number on the generic repo is not a reason. The AWS vllm repo often publishes a higher vLLM version than huggingface-vllm; an older-but-compatible huggingface-vllm tag still wins. "Latest vLLM" is not a requirement anyone stated — compatibility with the model is. If you fall back, record in the deployment log which of the three reasons applied.

    Where image URIs come from

    Primary source: AWS's official Deep Learning Containers catalog.

    URL: https://aws.github.io/deep-learning-containers/reference/available_images/

    This page is AWS-maintained and lists every image family with example URIs, tags, CUDA versions, Python versions, and platform (SageMaker vs EC2/ECS/EKS). When picking a URI for a deployment, read it from this page directly — copy the example URL, substitute <region> with the user's region, and pass it to deploy.py --image-uri.

    The example URLs use 763104351884 as the account ID for most regions. A few regions use different accounts (e.g. eu-south-1 uses 692866216735). Check the Region Availability page when in doubt.

    Exception: none currently. Every image family used by this workflow is now on the AWS catalog page (TEI was added in late 2026). If you encounter a new family that isn't there, mirror it via mirror_image.py and pass the resulting URI directly.

    Quick decision

    ModelContainer familyHow to get the URI
    HuggingFace text-generation LLM (Llama, Qwen, Mistral, etc.)HuggingFace vLLMAWS catalog → "HuggingFace vLLM Inference" (ECR repo huggingface-vllm)
    Same as above, multimodalHuggingFace vLLM-OmniAWS catalog → "HuggingFace vLLM-Omni Inference" (ECR repo huggingface-vllm-omni)
    HuggingFace embeddingsTEIAWS catalog → "HuggingFace Text Embeddings Inference"
    Encoder / cross-encoder rerankers (BERT-family *ForSequenceClassification)TEISame as embeddings
    Generative rerankers (causal-LM, e.g. Qwen3-Reranker)HuggingFace vLLMSame as text-generation LLMs — not TEI, see "Rerankers: TEI or vLLM?"
    Text-to-image / diffusion (Stable Diffusion, FLUX)DJL InferenceAWS catalog → "DJL Inference" — not HF Inference Toolkit, see "Known-broken images"
    HuggingFace classifiers, NER, QA, summarizationHF Inference Toolkit (CPU)AWS catalog → "HuggingFace PyTorch Inference"; GPU tags currently broken — see "Known-broken images"
    User specifically wants SGLangHuggingFace SGLangAWS catalog → "HuggingFace SGLang Inference"
    No compatible huggingface-vllm tag (verified incompatibility or region gap — see "Rule zero")vLLM (AWS)AWS catalog → "vLLM" section — fallback only, never for version freshness
    User specifically wants DJL-LMIDJL InferenceAWS catalog → "DJL Inference"
    Amazon NovaSageMaker JumpStartUse JumpStart, not raw endpoint creation
    Custom inference codeBYOCUser provides URI

    HuggingFace-curated DLCs are mandatory when one is compatible (see "Rule zero"). huggingface-vllm is layered directly on the AWS vLLM DLC — identical SM_VLLM_* env contract and the same cu130 AMI rule — and adds current transformers, current huggingface_hub + hf_xet (avoids the XET-CDN 403 download failures older images hit), and HF performance defaults. It is also what SageMaker SDK v3 auto-routes to. The AWS vllm image is a compatibility escape hatch only; it usually shows a higher vLLM version than huggingface-vllm, and that is not a reason to pick it.

    Do not use TGI. Text Generation Inference is archived. Models released after the archive (Qwen3 most famously) fail ping health checks on TGI. Use vLLM instead. (The SageMaker SDK v3 agrees: since PR #5960, June 2026, its ModelBuilder auto-routes text-generation to the HuggingFace vLLM DLC and multimodal tasks to HuggingFace vLLM-Omni.)

    Full reasoning for each family in references/model-to-image.md.

    Rerankers: TEI or vLLM?

    "Reranker" covers two very different architectures, and picking wrong wastes a full endpoint-creation cycle (~20 min) before TEI rejects the model:

    • Encoder cross-encoders (BAAI/bge-reranker-*, mixedbread, most sentence-transformers rerankers) — BERT-family models with a classification head. config.json has architectures: [..ForSequenceClassification] on a TEI-supported encoder type. → TEI.
    • Generative rerankers (Qwen/Qwen3-Reranker-*, and similar causal-LM judges) — decoder LLMs that score relevance via the logprob of a yes/no token. config.json has architectures: [..ForCausalLM]. → HuggingFace vLLM, deployed exactly like a text-generation LLM. TEI will load the architecture then reject the classifier model type (Qwen3 support in TEI is embeddings-only). Invocation pattern (raw completions API, max_tokens=1, logprobs scoring) is in hf-cloud-sagemaker-production-defaults.

    Preflight before creating any resources — one HTTP GET settles it:

    curl -s https://huggingface.co/<model-id>/raw/main/config.json
    # "architectures": ["Qwen3ForCausalLM"]              → vLLM
    # "architectures": ["XLMRobertaForSequenceClassification"] → TEI
    

    For TEI also confirm the (architecture, task) pair: an architecture appearing in TEI's supported list means embeddings support, not necessarily classification/reranking support.

    Heads-up: SageMaker SDK v3 (PR #5960) routes the text-ranking task to TEI unconditionally — correct for cross-encoders, wrong for generative rerankers. Don't treat the SDK's routing as evidence that TEI can serve a given reranker.

    Workflow

    For every family: read the URI from the AWS catalog page.

    1. Open https://aws.github.io/deep-learning-containers/reference/available_images/
    2. Find the section for the right family (e.g. "HuggingFace vLLM Inference" for HuggingFace LLMs, "HuggingFace Text Embeddings Inference" for embeddings)
    3. Pick the newest row marked SageMaker for the platform column — newest within that family. Do not switch to another family's section because it lists a higher engine version (see "Rule zero")
    4. Substitute <region> with the user's region (from hf-cloud-aws-context-discovery)
    5. For vLLM: also check the AMI requirement (see "vLLM AMI requirement" below)
    6. Pass the URI to deploy.py --image-uri (real-time) or deploy_async.py --image-uri (async)

    TEI: pick the right variant

    The TEI catalog row lists two URIs — GPU (tei repo) and CPU (tei-cpu repo). Pick based on the instance type:

    • ml.g*, ml.p*, ml.inf* → GPU variant
    • ml.c*, ml.m*, ml.t* → CPU variant

    Mixing them fails: CPU image on a GPU instance wastes hardware, GPU image on a CPU instance fails to start.

    Note on the TEI account ID: the catalog page shows 683313688378 as the example account, but TEI is published from a different account namespace than the main AWS DLCs and the per-region account IDs vary. If 683313688378.dkr.ecr.<region>.amazonaws.com/tei:... returns an ECR pull error for a region other than us-east-1, check the Region Availability page for the correct account ID for that region.

    vLLM AMI requirement

    vLLM DLC images with CUDA 13 or higher (current default: cu130) require setting InferenceAmiVersion=al2-ami-sagemaker-inference-gpu-3-1 on the ProductionVariant. This applies equally to huggingface-vllm and huggingface-vllm-omni (layered on the same cu130 base) and to the AWS vllm repo. Without it the container dies on startup with no CloudWatch logs ever created. The failure looks identical to many other things (account-level issues, quota, networking) and routinely sends people down wrong diagnostic paths.

    Lookup table:

    Tag containsInferenceAmiVersion to pass
    cu130 (or higher)al2-ami-sagemaker-inference-gpu-3-1
    cu129 or lower(omit the flag; default AMI works)

    Rule of thumb: if the vLLM tag you picked contains cu130 or later, pass --inference-ami-version al2-ami-sagemaker-inference-gpu-3-1 to deploy.py. If a future CUDA version (cu140+) needs a different AMI, add a row to the table when AWS publishes the new image.

    This is a vLLM-specific concern. TEI and HF Inference Toolkit images don't need an AMI override.

    Configuring the vLLM DLCs (HuggingFace vLLM and AWS vLLM)

    Both images share the same contract: configuration as environment variables on the SageMaker model definition, SM_VLLM_* mapped to vLLM CLI flags. The huggingface-vllm entrypoint additionally auto-detects the model when SM_VLLM_MODEL is unset — from /opt/ml/model if artifacts are mounted, else from HF_MODEL_ID — but setting SM_VLLM_MODEL explicitly works on both and is what our examples use.

    Required for every HuggingFace LLM deployment

    Env varPurposeNotes
    SM_VLLM_MODELHF model ID (e.g. Qwen/Qwen3-0.6B) or /opt/ml/model if loading from S3
    SM_VLLM_HOSTMust be 0.0.0.0Otherwise vLLM binds localhost only, ping fails, container dies before logs. Top cause of mystery failures with this image.
    SM_VLLM_TRUST_REMOTE_CODEtrue for Qwen and several recent architecturesSet unconditionally — downside negligible, upside is the model loads.
    HUGGING_FACE_HUB_TOKENHF tokenRequired for gated models.

    Tuning (optional)

    Env varPurpose
    SM_VLLM_MAX_MODEL_LENMax sequence length — set this; defaults can be wrong for fine-tunes
    SM_VLLM_GPU_MEMORY_UTILIZATIONFloat 0.0–1.0, ~0.9 reasonable
    SM_VLLM_TENSOR_PARALLEL_SIZEGPU count for multi-GPU instances
    SM_VLLM_DTYPEauto, bfloat16, float16

    Any vLLM CLI flag works — uppercase, replace dashes with underscores, prepend SM_VLLM_.

    Configuring TEI

    Simpler env contract than vLLM:

    Env varPurposeRequired
    HF_MODEL_IDHF model ID (e.g. BAAI/bge-large-en-v1.5) or /opt/ml/modelYes
    HF_TOKENHF auth tokenOnly for gated models
    MAX_BATCH_TOKENSMax tokens per batch (default 16384)No
    MAX_CLIENT_BATCH_SIZEMax requests per client batch (default 32)No

    No host-binding to configure, no trust-remote-code flag. The architectures TEI supports (BERT, CamemBERT, RoBERTa, XLM-RoBERTa, NomicBert, JinaBert, JinaCodeBert, Mistral, Qwen2/3, Gemma2/3, ModernBert) are baked into the image.

    CUDA / instance compatibility

    Critical and easy to get wrong:

    CUDA in image tagDefault AMIWith al2-ami-sagemaker-inference-gpu-3-1
    cu124 / cu128g5, g6, p5 all work(not needed)
    cu129g6, p5; g5 fails (driver mismatch → CannotStartContainerError)expected to fix g5 (unverified)
    cu130+fails everywhere — AMI flag is mandatoryg5, g6, p5 all work (cu130-on-g5 verified June 2026)

    The driver comes from the host AMI, not the instance family — so passing the gpu-3-1 AMI (which vLLM cu130 images require anyway) also makes ml.g5.* viable for cu129+ images.

    VPC / NAT gateway problem

    SageMaker endpoints inside a VPC without a NAT gateway can't pull from public.ecr.aws. The deployment fails with an image-pull error that doesn't mention "VPC" or "egress".

    For images on AWS's regional ECR (everything in the catalog): SageMaker reaches them through built-in routing, no NAT needed. Use the regional URI pattern (<account>.dkr.ecr.<region>.amazonaws.com/...), not the public.ecr.aws/... pattern.

    For images requiring public.ecr.aws access (less common): mirror to a private ECR repo in your account with scripts/mirror_image.py (cross-platform; needs Docker + the aws CLI). Run it from the shell where the AWS CLI works.

    # macOS / Linux
    PRIVATE_URI=$(python3 scripts/mirror_image.py \
        public.ecr.aws/deep-learning-containers/vllm:<tag> \
        vllm-mirror)
    
    # Windows (PowerShell) — capture stdout into a variable
    $PRIVATE_URI = python scripts\mirror_image.py `
        public.ecr.aws/deep-learning-containers/vllm:<tag> vllm-mirror
    

    When the catalog page won't render, is stale, or is wrong

    The page won't render / fetch returns junk: the catalog page is JavaScript-heavy and some fetch tools get an empty shell. Fallbacks, in order:

    1. The catalog's source data on GitHub — the page is generated from one YAML file per version, listing exact tags, CUDA, and Python versions. List a family's files, then fetch the newest:
      curl -s https://api.github.com/repos/aws/deep-learning-containers/contents/docs/src/data/huggingface-vllm
      curl -s https://raw.githubusercontent.com/aws/deep-learning-containers/main/docs/src/data/huggingface-vllm/0.21.0-gpu-sagemaker.yml
      
      Directory names match ECR repos (huggingface-vllm, huggingface-vllm-omni, huggingface-tei, vllm, djl-inference, ...).
    2. Query ECR directly for current tags in the target region (works with credentials that can read the DLC registry; if it returns AccessDenied, use the YAML files):
      aws ecr describe-images --registry-id 763104351884 --repository-name huggingface-vllm \
          --region <region> --query 'sort_by(imageDetails,&imagePushedAt)[-5:].imageTags' --output json
      
    3. Release notes on the DLC GitHub repo.

    A tag was just released and isn't on the page yet: rare; AWS updates the page on each release. Check the release notes above.

    An architecture you need isn't supported by the listed image yet: for TEI specifically, you can mirror the upstream image from GHCR (ghcr.io/huggingface/text-embeddings-inference:<version>) into private ECR and pass the resulting URI directly to deploy.py --image-uri. Same mirror_image.py script.

    Known-broken images (last checked July 2026)

    ImageDefectUse instead
    huggingface-pytorch-inference GPU tags — all recent ones tested (PT 2.3–2.6, cu121/cu124, transformers 4.48–5.5.3)ImportError: libtorch_cuda.so: undefined symbol: ncclCommResume at import torch. The NCCL bundled in the image is older than what torch links against — a packaging defect inside the container, on g5 and g6, regardless of AMI, model, or inference code. The MMS Java front-end keeps answering /ping, so the endpoint can reach InService while the Python worker crash-loops and serves nothing.DJL Inference (bundles its own complete CUDA/NCCL stack) or BYOC. CPU tags are unaffected.

    Re-check when AWS publishes new huggingface-pytorch-inference GPU tags — remove the row once a fixed image is confirmed.

    General fallback rule: when an HF DLC fails with CUDA/NCCL linker errors, switch to DJL Inference rather than iterating over sibling tags — the defect class is per-repo, not per-tag (three different tags were tried for the case above; all broken).

    Related HF Hub gotcha: older DLCs can fail model download with 403 Forbidden from HF's XET CDN (their bundled huggingface_hub predates XET auth). Set HF_HUB_ENABLE_HF_TRANSFER=0 to force the standard download path, or pre-stage weights in S3.

    Hub download time at first boot

    Loading the model from HF Hub happens inside the container after the endpoint starts — expect 5–15+ minutes before InService even for small models, longer for multi-GB ones. A slow first boot is not a failure; don't tear down or re-diagnose before the deploy script's 30-minute wait expires.

    For production or repeated deployments, pre-stage the weights in S3 and pass --model-s3-uri to deploy.py (the model then loads from /opt/ml/model) — faster, immune to Hub rate limits/outages, and no HUGGING_FACE_HUB_TOKEN needed at runtime.

    Alternatives

    Compare before choosing

    Computed 9618,447

    teng-lin/notebooklm-py

    notebooklm

    Complete API for Google NotebookLM - full programmatic access including features not in the web UI. Create notebooks, add sources, generate all artifact types, download in multiple formats. Activates on explicit /notebooklm or intent like "create a podcast about X"

    Computed 961,066

    TencentCloudBase/CloudBase-AI-Toolkit

    cloudbase-agent-python

    Build production-ready AI agent backends using the CloudBase Agent Python SDK — create agents with LangGraph/CrewAI/LlamaIndex, serve them via FastAPI with AG-UI protocol streaming + OpenAI-compatible endpoints, add tools (bash, filesystem, MCP, code execution), memory (in-memory, TDAI, MySQL, MongoDB), observability (OpenTelemetry/Langfuse), and middleware (auth, logging). Use this skill when the user wants to create an AI agent server, build a chatbot backend, set up human-in-the-loop workflow

    Computed 95237,532

    affaan-m/ECC

    mle-workflow

    Production machine-learning engineering workflow for data contracts, reproducible training, model evaluation, deployment, monitoring, and rollback. Use when building, reviewing, or hardening ML systems beyond one-off notebooks.

    Computed 9532,606

    K-Dense-AI/scientific-agent-skills

    simpy

    Build, inspect, test, and analyze bounded process-based discrete-event simulations with SimPy, including events, resources, interrupts, monitoring, replications, warm-up, and reproducible output analysis.