diff --git a/bundles.json b/bundles.json index 14afdbb1..bf5d95f1 100644 --- a/bundles.json +++ b/bundles.json @@ -173,6 +173,7 @@ "hidream_i1_dev", "hidream_i1_fast", "hidream_i1_full", + "fuse_options", "index", "index.ar", "index.es", diff --git a/packages/core/pyproject.toml b/packages/core/pyproject.toml index 3b715a6c..208374a0 100644 --- a/packages/core/pyproject.toml +++ b/packages/core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "comfyui-workflow-templates-core" -version = "0.3.65" +version = "0.3.66" description = "Core helpers for ComfyUI workflow templates" readme = {text = "Core helpers for ComfyUI workflow templates.", content-type = "text/plain"} requires-python = ">=3.9" diff --git a/packages/core/src/comfyui_workflow_templates_core/manifest.json b/packages/core/src/comfyui_workflow_templates_core/manifest.json index cc1e5410..ccdd2ea3 100644 --- a/packages/core/src/comfyui_workflow_templates_core/manifest.json +++ b/packages/core/src/comfyui_workflow_templates_core/manifest.json @@ -3185,6 +3185,20 @@ "path": "media-other/audio_stable_audio_example/" } }, + { + "id": "fuse_options", + "bundle": "media-other", + "version": "0.0.0", + "assets": [ + { + "filename": "fuse_options.json", + "sha256": "1e5d9f060a1a53de6d210ea4bdb88ef196e01b48774cf0efe6ebb68537f766c8" + } + ], + "cdn": { + "path": "media-other/fuse_options/" + } + }, { "id": "gsc_starter_1", "bundle": "media-other", diff --git a/packages/media_other/pyproject.toml b/packages/media_other/pyproject.toml index 4f43d9a6..27dc0ce9 100644 --- a/packages/media_other/pyproject.toml +++ b/packages/media_other/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "comfyui-workflow-templates-media-other" -version = "0.3.63" +version = "0.3.64" description = "Media bundle containing audio/3D/misc workflow assets" readme = {text = "Media bundle containing audio, 3D, and other workflow assets for ComfyUI.", content-type = "text/plain"} requires-python = ">=3.9" diff --git a/pyproject.toml b/pyproject.toml index d30f3f79..fa80fbb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,23 +18,23 @@ classifiers = [ ] dependencies = [ - "comfyui-workflow-templates-core==0.3.65", + "comfyui-workflow-templates-core==0.3.66", "comfyui-workflow-templates-media-api==0.3.34", "comfyui-workflow-templates-media-video==0.3.22", "comfyui-workflow-templates-media-image==0.3.47", - "comfyui-workflow-templates-media-other==0.3.63", + "comfyui-workflow-templates-media-other==0.3.64", ] [project.optional-dependencies] api = ["comfyui-workflow-templates-media-api==0.3.34"] video = ["comfyui-workflow-templates-media-video==0.3.22"] image = ["comfyui-workflow-templates-media-image==0.3.47"] -other = ["comfyui-workflow-templates-media-other==0.3.63"] +other = ["comfyui-workflow-templates-media-other==0.3.64"] all = [ "comfyui-workflow-templates-media-api==0.3.34", "comfyui-workflow-templates-media-video==0.3.22", "comfyui-workflow-templates-media-image==0.3.47", - "comfyui-workflow-templates-media-other==0.3.63", + "comfyui-workflow-templates-media-other==0.3.64", ] [tool.setuptools.packages.find] diff --git a/templates/fuse_options.json b/templates/fuse_options.json new file mode 100644 index 00000000..1f871351 --- /dev/null +++ b/templates/fuse_options.json @@ -0,0 +1,12 @@ +{ + "keys": [ + { "name": "name", "weight": 0.3 }, + { "name": "title", "weight": 0.3 }, + { "name": "description", "weight": 0.1 }, + { "name": "tags", "weight": 0.2 }, + { "name": "models", "weight": 0.3 } + ], + "threshold": 0.33, + "includeScore": true, + "includeMatches": true +} \ No newline at end of file