f12272d002
- docs/capabilities/INDEX.md - docs/capabilities/comfyui.md - python/functions/browser/comfyui_export_workflow_ui.md - python/functions/browser/comfyui_export_workflow_ui.py - python/functions/browser/comfyui_load_workflow_ui.md - python/functions/browser/comfyui_load_workflow_ui.py - python/functions/browser/comfyui_queue_prompt_ui.md - python/functions/browser/comfyui_queue_prompt_ui.py - python/functions/browser/comfyui_refresh_nodes_ui.md - python/functions/browser/comfyui_refresh_nodes_ui.py - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
178 lines
2.4 KiB
JSON
178 lines
2.4 KiB
JSON
{
|
|
"ckpt": {
|
|
"class_type": "ImageOnlyCheckpointLoader",
|
|
"inputs": {
|
|
"ckpt_name": "hunyuan3d-dit-v2-mv.safetensors"
|
|
}
|
|
},
|
|
"img_front": {
|
|
"class_type": "LoadImage",
|
|
"inputs": {
|
|
"image": "fox_front.png"
|
|
}
|
|
},
|
|
"enc_front": {
|
|
"class_type": "CLIPVisionEncode",
|
|
"inputs": {
|
|
"clip_vision": [
|
|
"ckpt",
|
|
1
|
|
],
|
|
"image": [
|
|
"img_front",
|
|
0
|
|
],
|
|
"crop": "center"
|
|
}
|
|
},
|
|
"img_left": {
|
|
"class_type": "LoadImage",
|
|
"inputs": {
|
|
"image": "fox_left.png"
|
|
}
|
|
},
|
|
"enc_left": {
|
|
"class_type": "CLIPVisionEncode",
|
|
"inputs": {
|
|
"clip_vision": [
|
|
"ckpt",
|
|
1
|
|
],
|
|
"image": [
|
|
"img_left",
|
|
0
|
|
],
|
|
"crop": "center"
|
|
}
|
|
},
|
|
"img_back": {
|
|
"class_type": "LoadImage",
|
|
"inputs": {
|
|
"image": "fox_back.png"
|
|
}
|
|
},
|
|
"enc_back": {
|
|
"class_type": "CLIPVisionEncode",
|
|
"inputs": {
|
|
"clip_vision": [
|
|
"ckpt",
|
|
1
|
|
],
|
|
"image": [
|
|
"img_back",
|
|
0
|
|
],
|
|
"crop": "center"
|
|
}
|
|
},
|
|
"img_right": {
|
|
"class_type": "LoadImage",
|
|
"inputs": {
|
|
"image": "fox_right.png"
|
|
}
|
|
},
|
|
"enc_right": {
|
|
"class_type": "CLIPVisionEncode",
|
|
"inputs": {
|
|
"clip_vision": [
|
|
"ckpt",
|
|
1
|
|
],
|
|
"image": [
|
|
"img_right",
|
|
0
|
|
],
|
|
"crop": "center"
|
|
}
|
|
},
|
|
"cond": {
|
|
"class_type": "Hunyuan3Dv2ConditioningMultiView",
|
|
"inputs": {
|
|
"front": [
|
|
"enc_front",
|
|
0
|
|
],
|
|
"left": [
|
|
"enc_left",
|
|
0
|
|
],
|
|
"back": [
|
|
"enc_back",
|
|
0
|
|
],
|
|
"right": [
|
|
"enc_right",
|
|
0
|
|
]
|
|
}
|
|
},
|
|
"latent": {
|
|
"class_type": "EmptyLatentHunyuan3Dv2",
|
|
"inputs": {
|
|
"resolution": 3072,
|
|
"batch_size": 1
|
|
}
|
|
},
|
|
"ksampler": {
|
|
"class_type": "KSampler",
|
|
"inputs": {
|
|
"model": [
|
|
"ckpt",
|
|
0
|
|
],
|
|
"positive": [
|
|
"cond",
|
|
0
|
|
],
|
|
"negative": [
|
|
"cond",
|
|
1
|
|
],
|
|
"latent_image": [
|
|
"latent",
|
|
0
|
|
],
|
|
"seed": 42,
|
|
"steps": 30,
|
|
"cfg": 5.5,
|
|
"sampler_name": "euler",
|
|
"scheduler": "normal",
|
|
"denoise": 1.0
|
|
}
|
|
},
|
|
"vae": {
|
|
"class_type": "VAEDecodeHunyuan3D",
|
|
"inputs": {
|
|
"samples": [
|
|
"ksampler",
|
|
0
|
|
],
|
|
"vae": [
|
|
"ckpt",
|
|
2
|
|
],
|
|
"num_chunks": 8000,
|
|
"octree_resolution": 256
|
|
}
|
|
},
|
|
"mesh": {
|
|
"class_type": "VoxelToMeshBasic",
|
|
"inputs": {
|
|
"voxel": [
|
|
"vae",
|
|
0
|
|
],
|
|
"threshold": 0.6
|
|
}
|
|
},
|
|
"save": {
|
|
"class_type": "SaveGLB",
|
|
"inputs": {
|
|
"mesh": [
|
|
"mesh",
|
|
0
|
|
],
|
|
"filename_prefix": "fox_mv_shape"
|
|
}
|
|
}
|
|
} |