Hugging Face tested how well coding agents could deploy models on Amazon SageMaker, finding that newer models faced greater deployment issues. The experiment involved using Claude Code running Opus 4.8 to deploy a small text-generation model, Qwen/Qwen3-0.6B, and a multimodal diffusion model, google/diffusiongemma-26B-A4B-it. The agent initially used TGI, which failed due to incompatibility with the Qwen3 architecture. The agent eventually switched to vLLM after multiple failed attempts, highlighting the challenges in automating deployment for newer models. The process took about 80 minutes, with the agent failing to recognize the outdated nature of TGI for the Qwen3 model. The endpoint worked but lacked proper monitoring and resource management, leading to ongoing costs. The deployment script also contained outdated documentation, pointing users to incorrect tools and versions. The second deployment for the diffusion model similarly relied on TGI, which was not suitable for the model's architecture, resulting in a silent failure until the endpoint failed to start. The results underscore the need for better integration and training for coding agents in cloud deployment tasks. Source: huggingface

The stock agent deployed the Qwen3-0.6B model using TGI, which failed the health check due to incompatibility with the Qwen3 architecture. The agent attempted to bump the TGI version and redeploy multiple times, eventually switching to vLLM after about 80 minutes and four failed attempts. The deployment script included outdated documentation, directing users to TGI and the SageMaker Python SDK, which were incompatible with the model. The endpoint worked but lacked proper monitoring and resource management, leading to ongoing costs. The agent also failed to recognize the outdated nature of TGI for the Qwen3 model, resulting in a suboptimal deployment. The deployment process involved manual steps to shut down the instance, highlighting the need for better automation in cloud deployment tasks. Source: huggingface

The experiment was conducted to assess the reliability of coding agents in deploying models on Amazon SageMaker, with a focus on how well they handle newer models. The agent's training data included tutorials that favored TGI, which had been archived and was not compatible with the Qwen3 architecture. The agent's failure to recognize this incompatibility led to a prolonged deployment process and an endpoint that required manual intervention to shut down. The results indicate that while the agent could eventually deploy the model, the process was inefficient and error-prone, underscoring the need for improved integration and training for coding agents in cloud deployment tasks. Source: huggingface