Nexevo.aiNexevo.ai
← All examples
Image / video / 3D generation

3D asset generation (Hunyuan 3D)

Hunyuan 3D direct (TC3-HMAC, -30% vs Replicate) — text / image → GLB / OBJ / USDZ.

python
from nexevo_ai import Nexevo

client = Nexevo()

# 文生 3D(GLB 适合直接进 Three.js / Unreal)
asset = client.models3d.generate_and_wait(
    model="hunyuan-3d-2",       # 或 "hunyuan-3d-2-pro" 高面数档
    prompt="a low-poly viking longboat with detailed sail",
    output_format="glb",         # 或 "obj" / "usdz"
)
print(asset["results"][0]["url"])  # 下载 GLB 文件
3D asset generation (Hunyuan 3D) — Nexevo Cookbook | Nexevo.ai