Close Menu
MyAppsPlus

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    iPhone 18 Pro vs. Pixel 11 Pro: The New Apple and Google Pro Phones Are Quite Different

    September 18, 2026

    Google Play Games is giving Sidekick a much-needed activation upgrade

    September 18, 2026

    Clicks Communicator lands in December with 12GB RAM, two months of free data

    September 18, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    MyAppsPlusMyAppsPlus
    Friday, September 18
    • Home
    • Breaking Tech
    • Apps & Software
    • AI & Automation
    • Android
    • iPhone & iOS
    • More
      • Reviews
      • How-To Guides
      • Deals & Discounts
      • Shop
    MyAppsPlus
    Home»AI & Automation»Deploy Hugging Face models on Amazon SageMaker AI with coding agents
    AI & Automation

    Deploy Hugging Face models on Amazon SageMaker AI with coding agents

    myappsplusBy myappsplusSeptember 18, 20260013 Mins Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    Deploy Hugging Face models on Amazon SageMaker AI with coding agents
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    Deploying a Hugging Face model to production means making a dozen decisions: choosing the right serving container for the model’s architecture, confirming the current image tag for your AWS Region, and matching an instance type to the model’s memory footprint. Beyond infrastructure, you must wire autoscaling so you don’t burn GPU hours on an idle endpoint. You also set Amazon CloudWatch alarms that catch silent failures before your users do. After you’ve made those decisions, Amazon SageMaker AI collapses that work into hours.

    This kind of structured, repeatable work is exactly what coding agents, like Kiro and Claude Code, are built for. It’s tempting to describe a model to deploy in a coding agent, walk away, and come back to a working endpoint. In practice, an unguided coding agent might make wrong decisions, producing endpoints that are fragile, costly, or quietly wrong. The problem gets worse for newer models, since their training data might not include the latest deployment knowledge.

    In this post, you learn how to deploy production-ready Hugging Face models on SageMaker AI using agent skills. You install six skills from Hugging Face Skills, point a coding agent at a Hugging Face model, and get back a real-time endpoint with autoscaling, Amazon CloudWatch alarms, the correct serving container from the AWS Deep Learning Containers (DLC) catalog, and a verified teardown path. Real-time endpoint is the default, but the skills also support real-time with scale-to-zero, serverless inference, asynchronous inference, batch transform, and Amazon Bedrock Custom Model Import. The skills are open source, use only Python and the AWS Command Line Interface (AWS CLI), and work unchanged on macOS, Linux, and Windows.

    The problem with an unguided coding agent

    To show what the skills actually prevent, it helps to watch what a capable agent does without them. We tested both Kiro (with Auto or Claude Fable 5) and Claude Code (with Opus 4.8) for the request:

    deploy the small [Qwen/Qwen3-0.6B] (https://huggingface.co/Qwen/Qwen3-0.6B) model to a real-time endpoint, write the plan to a file first, and keep a log of every action.

    Both coding agents initially chose Text Generation Inference (TGI) as the serving container to deploy, an understandable choice given that TGI was the default for years and model training data is full of tutorials that reach it. But the TGI build available in the Region predated Qwen3’s architecture and couldn’t load the model. The endpoint failed its health check. The agent bumped the TGI version, redeployed, failed again, and pivoted to vLLM. This resulted in multiple deployment failures, each of which billed GPU time as it started and then crashed.

    The second request failed more quietly. We asked the same agent to deploy a multimodal mixture-of-experts (MoE) diffusion model released only weeks before the test. The coding agents confirmed it existed, and again wrote a script built on TGI, a text-generation server with no backend for a discrete-diffusion image-text model. Nothing failed loudly. You would find out only when the endpoint refused to come up.

    The two runs share the same root cause: missing deployment facts, not reasoning failure. The agent planned and debugged well. What it lacked was current, specific knowledge. Recent Qwen models need vLLM. Python 3.13 has no working wheels for much of the machine learning (ML) stack. Container images should be resolved from the published AWS Deep Learning Containers catalog. This knowledge changes faster than model weights get updated. So we make it into editable skill files rather than rely on the latest release of a model to absorb it.

    Table 1 compares the model deployment made by the unguided agent against the agent with skills installed.

    Deployment concerns Unguided agent With skills
    Serving container TGI first → health-check failure → vLLM vLLM, chosen before any resource was created
    Image URI Discovered by trial and error Resolved from the AWS DLC catalog, with fallback when the registry query was denied
    Autoscaling None Target tracking, 1–2 instances
    Monitoring None Three CloudWatch alarms (latency, errors, overhead)
    Documentation README recommended TGI, the SageMaker SDK, and Python 3.13 Plan and scripts matched what actually ran
    Region, role, environment Correct natively Correct by rule
    Teardown A script you could run Run, then verified the resources were gone

    Table 1: The same request, run by the agent without and with the skills installed

    The rest of this post shows how we deploy Hugging Face models on SageMaker AI endpoints (the right-hand column of Table 1) using agent skills.

    Agent skills for deploying Hugging Face models on SageMaker AI

    Six skills from the Hugging Face Skills GitHub repo cover the end-to-end deployment workflow. The planner skill orchestrates the other five, as shown in the following diagram.

    hf-cloud-sagemaker-deployment-planner (orchestrate, ask only what's needed)
    │
    ├── hf-cloud-aws-context-discovery (discover local AWS context)
    ├── hf-cloud-python-env-setup (set up an isolated Python environment)
    ├── hf-cloud-sagemaker-iam-preflight (verify a usable execution role)
    ├── hf-cloud-serving-image-selection (select the right container family and image URI)
    └── hf-cloud-sagemaker-production-defaults (deploy with autoscaling, alarms, and tags)

    An agent skill example

    An agent skill is an open standard package consisting of a folder with a required SKILL.md file. This file includes metadata (name and description, at minimum) and instructions that tell an agent how to perform a specific task. Skills load through progressive disclosure. An agent reads a skill on demand when the current task matches its description. The following is a trimmed version of the hf-cloud-serving-image-selection skill.

    ---
    name: hf-cloud-serving-image-selection
    description: 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 Learning Containers are ALWAYS preferred: HuggingFace vLLM (LLMs and generative rerankers), HuggingFace vLLM-Omni (multimodal), TEI (embeddings/cross-encoder rerankers), HF Inference Toolkit (other transformers). Generic images (AWS vLLM, DJL-LMI, SGLang) are used only when no HuggingFace image is compatible --- never merely because they carry a newer version. Never hardcode a container URI from memory and never default to TGI. Prevents stale-image failures and wrong-region URIs
    ---
    Serving Image Selection
    The serving container is the single thing most likely to break a deployment
    that "looked correct on paper". Wrong container, stale tag, or wrong AMI all
    produce the same opaque `Failed to pass health check` error.

    End-to-end model deployment phases

    The skills drive five AWS services. Amazon SageMaker AI hosts the endpoint, AWS Identity and Access Management (IAM) provides the execution role. Amazon Elastic Container Registry (Amazon ECR) and AWS Deep Learning Containers supply the serving image, while Amazon CloudWatch powers the alarms. All helper scripts in skills call these services through Boto3 and the AWS Command Line Interface (AWS CLI), which retains full control over what gets created. The SageMaker Python SDK works too, but the skills default to Boto3.

    The deployment follows six phases:

    1. Discover the AWS context (profile, Region, account, and caller identity) with read-only calls.
    2. Set up an isolated Python environment with a supported Python version and a current boto3.
    3. Find an existing SageMaker AI execution role and create one only if none exists and you have permission.
    4. Select the serving container family and resolve a current image URI from the AWS DLC catalog.
    5. Create the model, endpoint configuration, and endpoint, and then attach autoscaling and Amazon CloudWatch alarms.
    6. Run a smoke test against the live endpoint and report the result.

    Prerequisites

    To follow along, you need the following:

    • An AWS account with permission to use Amazon SageMaker AI, including an existing SageMaker AI execution role. The skills can find one automatically or create one if none exists and your credentials allow it.
    • AWS CLI v2, configured with credentials for that account.
    • Python 3.10, 3.11, or 3.12. Python 3.13 or later isn’t supported because much of the ML stack does not yet publish wheels for these versions.
    • A coding agent that supports skills. This post uses Kiro IDE.
    • Git, to clone the skills repository.

    This post deploys Qwen/Qwen3-0.6B to a single ml.g5.xlarge real-time inference instance in US East (N. Virginia) Region (us-east-1). Confirm your account has available quota for this instance type before you start.

    Note that a real-time endpoint bills continuously whether it serves traffic, so delete the endpoint when you’re done or follow the teardown steps at the end of this post.

    Install the skills

    Kiro supports two skill scopes: workspace and global. The workspace skills reside in your project under .kiro/skills/ and apply only to project-specific workflows. The global skills reside under ~/.kiro/skills/ and are available across all workspaces.

    To install the six skills from the Hugging Face Skills GitHub repo in the current workspace, enter the following request in a Kiro default agent chat session:

    Install six agent skills from the huggingface/skills repo, pinned to commit
    f3186efbbc322121eb5d0f31e8a1d669ee961159, into this workspace.
    Source: https://github.com/huggingface/skills.git
    Commit: f3186efbbc322121eb5d0f31e8a1d669ee961159
    Skills live under the repo's skills/ directory:
    - hf-cloud-sagemaker-deployment-planner
    - hf-cloud-aws-context-discovery
    - hf-cloud-python-env-setup
    - hf-cloud-sagemaker-iam-preflight
    - hf-cloud-serving-image-selection
    - hf-cloud-sagemaker-production-defaults

    Kiro summarizes the installed files as shown in Figure 1. Note that this post tested and used the repo with a specific SHA: f3186efbbc322121eb5d0f31e8a1d669ee961159.

    Figure 1: Kiro finishes installing the six agent skills

    To confirm all six skill directories are present, enter / in the Kiro chat session to see available skills as slash commands, as shown in Figure 2.

    Figure 2: Enter / to see available skills in the Kiro chat session

    Deploy a model with Kiro

    With the skills installed, you describe the model to the agent in plain language, and the planner skill takes over. You don’t specify which container family to use, how to find the execution role, or which production defaults to attach, because those decisions live in the skills.

    Enter the following request in the Kiro chat session:

    I need to deploy a model on AWS SageMaker, and I don't want to deal with all the console selecting and boto3 myself. The model is Qwen3 0.6B, pinned to commit `c1899de289a04d12100db370d81485cdf75e47ca`, called from an internal app. Figure out the best way to deploy it and walk me through it. Write the plan to a file first, and keep a log of every action you take.

    To deploy the model, complete the following steps:

    Review the plan. The agent writes a deployment plan to a file and waits for your approval before creating any billable resources.

    AWS context discovery and container selection. The agent discovers the AWS context (profile, Region, account). The hf-cloud-serving-image-selection skill selects vLLM for Qwen3 and resolves the image URI from the AWS DLC catalog.

    Approve the deployment when the agent asks. The hf-cloud-sagemaker-production-defaults skill creates the model, endpoint configuration, and endpoint as a unit, then attaches autoscaling and CloudWatch alarms.

    Verify. Review the smoke-test result the agent reports after the endpoint reaches InService.

    The following lines come from the deployment log the agent kept during the run:

    ## Step 5: Serving Image Selection
    | Value | Resolved to |
    | Image URI | `763104351884.dkr.ecr.us-east-1.amazonaws.com/huggingface-vllm:0.28.0-transformers5.15.0-gpu-py312-cu130-ubuntu24.04` |
    | InferenceAmiVersion | `al2-ami-sagemaker-inference-gpu-3-1` |
    | `SM_VLLM_MODEL` | `Qwen/Qwen3-0.6B` |
    | `SM_VLLM_HOST` | `0.0.0.0` (else vLLM binds localhost, ping fails, container dies) |
    | `SM_VLLM_TRUST_REMOTE_CODE` | `false` |
    | `SM_VLLM_MAX_MODEL_LEN` | `8192` |

    For a gated model, add a HUGGING_FACE_HUB_TOKEN environment variable.

    Resolve the execution role

    Deployments often stop at the execution role when calling iam:CreateRole fails on a corporate account whose AWS IAM Identity Center session has no IAM write access. The hf-cloud-sagemaker-iam-preflight skill reverses the order: find first, create only as a last resort.

    Its check_role.py script searches the account for existing roles that match patterns such as AmazonSageMaker-ExecutionRole-* and *SageMaker*Execution*, and ranks them by last-used date. It also validates the trust policy and returns the Amazon Resource Name (ARN). It creates a role only when none exists and the caller has iam:CreateRole permission. Note that the created role carries AmazonSageMakerFullAccess. We recommend updating the role to grant only the permissions it needs, following the principle of least privilege.

    Apply production defaults

    The hf-cloud-sagemaker-production-defaults skill turns an endpoint from a demo into a production deployment. It applies the defaults in Table 2 to every endpoint, establishing an operational baseline. For production deployment, you need to add user-specific configurations, such as Amazon Virtual Private Cloud and AWS Key Management Service configurations.

    Resource Name Billing
    Model qwen3-06b-internal none
    Endpoint config qwen3-06b-internal-20260904-1913-config none
    Endpoint qwen3-06b-internal-20260904-1913 $1.408/hr per instance
    Autoscaling target + policy endpoint/.../variant/AllTraffic, min 1 max 4 none
    CloudWatch alarms x3 <endpoint>-Invocation5XXErrors, -ModelLatencyP99, -OverheadLatencyP99 negligible

    Table 2: Production defaults the skill applies to every endpoint

    Decisions the coding agent made on its own

    Agent skills define the workflow, but the coding agent still makes judgment calls within it. In one case, when the agent queried Amazon ECR for the newest image tag, the call was denied because the IAM Identity Center role lacked ecr-public:DescribeImages permission. Rather than fail the deployment, the agent fell back to the known-good tag the skill ships as a safety net and recorded the reason in the log. In another case, after the smoke test returned HTTP 200, the agent noticed that the actual answer was never emitted. This is because the model’s reply was truncated at max_tokens while still inside the Qwen3 reasoning block. The agent flagged this in the log as a configuration issue: the calling application should raise the token limit rather than treat the test as a pass.

    Clean up

    A real-time endpoint bills for its instance the entire time it exists. Delete the resources you created to avoid ongoing charges. The sagemaker-production-defaults skill includes a teardown.py script that removes the deployment resources and then confirms they’re gone.

    To clean up, complete the following steps:

    1. Ask the agent to tear down the deployment or run teardown.py directly with the endpoint name and Region.
    2. Confirm the script reports the endpoint, endpoint configuration, and model as deleted. The script verifies the deletion.
    3. Check that the autoscaling policy and CloudWatch alarms have been removed. Delete any that remain.

    Conclusion

    Six reusable agent skills turn an unguided coding agent into one that deploys Hugging Face models on SageMaker AI endpoints with production-ready features. Each deployment includes the proper container, autoscaling, CloudWatch alarms, and a verified teardown path. Without these skills, agents reach for outdated containers, skip production safeguards, and leave misleading documentation. This post walks through each skill: AWS context discovery, Python environment setup, IAM role resolution, container selection from the AWS DLC catalog, and deployment with production defaults.

    To get started, install the skills from the Hugging Face Skills GitHub repo and deploy your first model. The skills are open

    Teams can also use Amazon SageMaker JumpStart to deploy a set of popular Hugging Face models directly from the console, and Inference Recommendations to automatically benchmark and select the optimal instance type for their workload.

    Amazon deploy Face Hugging models
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    myappsplus
    • Website

    Related Posts

    Berkeley Talks: W. Kamau Bell on AI, creativity and resisting the pull of automation

    September 18, 2026

    Introducing Kimi K3 on Amazon Bedrock

    September 18, 2026

    4 articles on how the market for AI receptionists grew

    September 18, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    This tiny AI box could save me from upgrading my perfectly good laptop

    September 6, 20263 Views

    Top 10 Best React Native App Development Companies in 2026

    September 12, 20262 Views

    AI, automation, robot dogs ensure on-site nuclear safety

    September 7, 20262 Views
    Latest Reviews

    Apple may have accidentally teased its own roadmap with 14 unreleased devices revealed — but this long overdue update has me most excited

    myappsplusAugust 19, 2026

    Apple TV 4K fans are begging for these 3 upgrades from the leaked Siri Remote — but one is already possible today

    myappsplusAugust 20, 2026

    Can MainstreamOS finally make Linux a household name? I tried it to find out

    myappsplusAugust 20, 2026
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram

    Subscribe to Updates

    Get the latest tech news from FooBar about tech, design and biz.

    Most Popular

    Apple may have accidentally teased its own roadmap with 14 unreleased devices revealed — but this long overdue update has me most excited

    August 19, 20260 Views

    Apple TV 4K fans are begging for these 3 upgrades from the leaked Siri Remote — but one is already possible today

    August 20, 20260 Views

    Can MainstreamOS finally make Linux a household name? I tried it to find out

    August 20, 20260 Views
    Our Picks

    iPhone 18 Pro vs. Pixel 11 Pro: The New Apple and Google Pro Phones Are Quite Different

    September 18, 2026

    Google Play Games is giving Sidekick a much-needed activation upgrade

    September 18, 2026

    Clicks Communicator lands in December with 12GB RAM, two months of free data

    September 18, 2026

    Subscribe to Updates

    Subscribe to our newsletter and get the latest tech news, app updates, AI trends, smartphone reviews, and exclusive deals delivered straight to your inbox.

    Facebook X (Twitter) Instagram Pinterest
    • About Us
    • Get In Touch
    • Disclaimer
    • Privacy Policy
    • Terms & Conditions
    © 2026 MyAppsPlus. All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.