You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ ComfyScript can also be used without installed ComfyUI. See [only ComfyScript pa
86
86
## Transpiler
87
87
The transpiler can translate ComfyUI's workflows to ComfyScript.
88
88
89
-
When ComfyScript is installed as custom nodes, `SaveImage` and similar nodes will be hooked to automatically save the script as images' metadata. And the script will also be output to the terminal.
89
+
When ComfyScript is installed as custom nodes, `SaveImage` and similar nodes will be hooked to automatically save the script as the image's metadata. The script will also be printed to the terminal.
90
90
91
91
For example, here is a workflow in ComfyUI:
92
92
@@ -133,6 +133,8 @@ Comparing scripts:
133
133
134
134

135
135
136
+
To control these features, see [settings.example.toml](settings.example.toml).
137
+
136
138
You can also use the transpiler via the [CLI](docs/Transpiler.md#cli).
# Do not edit this file directly, instead, copy the following as `settings.toml` and edit that file.
3
+
4
+
# These settings can also be overriden by:
5
+
# - Environment variables
6
+
# e.g. `COMFY_SCRIPT_TRANSPILE_HOOK_ENABLED=false`
7
+
# - Python code
8
+
# e.g.
9
+
# ```python
10
+
# from comfy_script.config import settings
11
+
# settings.transpile.hook.enabled=False
12
+
# ```
13
+
14
+
[transpile.hook]
15
+
# When ComfyScript is installed as custom nodes, `SaveImage` and similar nodes will be hooked to automatically save the script as the image's metadata. The script will also be printed to the terminal.
16
+
# To disable a feature, change its value to `false`.
0 commit comments