zsxkib / hunyuan3d-2-multi-output

  • Public
  • 14 runs
  • L40S

Run zsxkib/hunyuan3d-2-multi-output with an API

Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.

Input schema

The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.

Field Type Default value Description
images
array
Input images for generating 3D shapes
steps
integer
50

Min: 20

Max: 50

Number of inference steps
guidance_scale
number
5.5

Min: 1

Max: 20

Guidance scale for generation
seed
integer
1234
Random seed for generation. Each image will use seed + its index.
octree_resolution
integer (enum)
512

Options:

256, 384, 512

Octree resolution for mesh generation
remove_background
boolean
True
Whether to remove background from input image

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{
  "type": "object",
  "title": "Output",
  "required": [
    "meshes"
  ],
  "properties": {
    "meshes": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "title": "Meshes"
    }
  }
}