AI Agent Hub
Back to skills
HY 3D Generation icon

HY 3D Generation

Design & Media Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @tencent-adm/hy-3d-generation using https://skillhub.cn/install/skillhub.md.

About this skill

Problem to solve

When you have a text description, one product image, or multiple view images but need a downloadable 3D model, manual modeling can be costly, and calling a 3D generation service directly avoids re-implementing cloud API submission, polling, error handling, and result parsing.

How the skill works

The skill wraps two Tencent Cloud ai3d operations: SubmitHunyuanTo3DProJob and QueryHunyuanTo3DProJob. By default it uses main.py, accepting --prompt, --image-url, --image-base64, or --multi-view, then submits the job and polls until completion.

It supports PBR materials, face counts from 10000 to 1500000, generation types such as Normal, LowPoly, Geometry, and Sketch, and output formats including obj+glb, STL, USDZ, and FBX. For asynchronous workflows, submit_job.py can return a JobId first, and query_job.py can check status later.

The result usually includes file type, Url, and PreviewImageUrl; 3D file URLs expire after 24 hours.

Boundaries and cautions

  • It requires an enabled Hunyuan 3D service and Tencent Cloud API credentials, preferably read from environment variables.
  • Generation usually takes 1 to 5 minutes, and result URLs should be saved promptly because they expire.
  • Model 3.1 does not support LowPoly; image resolution should be 128~5000, with URL input under 8MB and Base64 input under 6MB.
  • On failure, keep ErrorCode and ErrorMessage visible instead of inventing file URLs.

Use Cases

  • E-commerce operators turn a single product hero image into a GLB model for a product detail page.
  • Industrial designers convert front, back, and top view images into a white model to check structure and proportions.
  • Game artists generate LowPoly assets from a Chinese prompt and export FBX for engine import.
  • Engineering teams integrate 3D generation into a pipeline and query async job results by JobId.

Best For

  • E-commerce content operators who need product images converted into 3D display assets
  • Industrial designers who need multi-view photos or sketches validated as 3D structures
  • Game artists who need LowPoly or PBR-ready 3D assets
  • Engineering developers who need cloud 3D generation wrapped into applications