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
|
{
"type": "object",
"title": "Input",
"required": [
"images"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 1234,
"x-order": 3,
"description": "Random seed for generation. Each image will use seed + its index."
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 50,
"maximum": 50,
"minimum": 20,
"x-order": 1,
"description": "Number of inference steps"
},
"images": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Images",
"x-order": 0,
"description": "Input images for generating 3D shapes"
},
"guidance_scale": {
"type": "number",
"title": "Guidance Scale",
"default": 5.5,
"maximum": 20,
"minimum": 1,
"x-order": 2,
"description": "Guidance scale for generation"
},
"octree_resolution": {
"enum": [
256,
384,
512
],
"type": "integer",
"title": "octree_resolution",
"description": "Octree resolution for mesh generation",
"default": 512,
"x-order": 4
},
"remove_background": {
"type": "boolean",
"title": "Remove Background",
"default": true,
"x-order": 5,
"description": "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.
{
"type": "object",
"title": "Output",
"required": [
"meshes"
],
"properties": {
"meshes": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Meshes"
}
}
}