Skip to content

Commit 268a34b

Browse files
Add fuse options (#445)
Co-authored-by: GitHub Action <[email protected]>
1 parent 2dd5f3d commit 268a34b

File tree

6 files changed

+33
-6
lines changed

6 files changed

+33
-6
lines changed

bundles.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
"hidream_i1_dev",
174174
"hidream_i1_fast",
175175
"hidream_i1_full",
176+
"fuse_options",
176177
"index",
177178
"index.ar",
178179
"index.es",

packages/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "comfyui-workflow-templates-core"
7-
version = "0.3.65"
7+
version = "0.3.66"
88
description = "Core helpers for ComfyUI workflow templates"
99
readme = {text = "Core helpers for ComfyUI workflow templates.", content-type = "text/plain"}
1010
requires-python = ">=3.9"

packages/core/src/comfyui_workflow_templates_core/manifest.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3185,6 +3185,20 @@
31853185
"path": "media-other/audio_stable_audio_example/"
31863186
}
31873187
},
3188+
{
3189+
"id": "fuse_options",
3190+
"bundle": "media-other",
3191+
"version": "0.0.0",
3192+
"assets": [
3193+
{
3194+
"filename": "fuse_options.json",
3195+
"sha256": "1e5d9f060a1a53de6d210ea4bdb88ef196e01b48774cf0efe6ebb68537f766c8"
3196+
}
3197+
],
3198+
"cdn": {
3199+
"path": "media-other/fuse_options/"
3200+
}
3201+
},
31883202
{
31893203
"id": "gsc_starter_1",
31903204
"bundle": "media-other",

packages/media_other/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "comfyui-workflow-templates-media-other"
7-
version = "0.3.63"
7+
version = "0.3.64"
88
description = "Media bundle containing audio/3D/misc workflow assets"
99
readme = {text = "Media bundle containing audio, 3D, and other workflow assets for ComfyUI.", content-type = "text/plain"}
1010
requires-python = ">=3.9"

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ classifiers = [
1818
]
1919

2020
dependencies = [
21-
"comfyui-workflow-templates-core==0.3.65",
21+
"comfyui-workflow-templates-core==0.3.66",
2222
"comfyui-workflow-templates-media-api==0.3.34",
2323
"comfyui-workflow-templates-media-video==0.3.22",
2424
"comfyui-workflow-templates-media-image==0.3.47",
25-
"comfyui-workflow-templates-media-other==0.3.63",
25+
"comfyui-workflow-templates-media-other==0.3.64",
2626
]
2727

2828
[project.optional-dependencies]
2929
api = ["comfyui-workflow-templates-media-api==0.3.34"]
3030
video = ["comfyui-workflow-templates-media-video==0.3.22"]
3131
image = ["comfyui-workflow-templates-media-image==0.3.47"]
32-
other = ["comfyui-workflow-templates-media-other==0.3.63"]
32+
other = ["comfyui-workflow-templates-media-other==0.3.64"]
3333
all = [
3434
"comfyui-workflow-templates-media-api==0.3.34",
3535
"comfyui-workflow-templates-media-video==0.3.22",
3636
"comfyui-workflow-templates-media-image==0.3.47",
37-
"comfyui-workflow-templates-media-other==0.3.63",
37+
"comfyui-workflow-templates-media-other==0.3.64",
3838
]
3939

4040
[tool.setuptools.packages.find]

templates/fuse_options.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"keys": [
3+
{ "name": "name", "weight": 0.3 },
4+
{ "name": "title", "weight": 0.3 },
5+
{ "name": "description", "weight": 0.1 },
6+
{ "name": "tags", "weight": 0.2 },
7+
{ "name": "models", "weight": 0.3 }
8+
],
9+
"threshold": 0.33,
10+
"includeScore": true,
11+
"includeMatches": true
12+
}

0 commit comments

Comments
 (0)