Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0257970
feat/parameterize-python-workflow
Gabizar Jun 10, 2025
367654a
feat/cache-nodes
Gabizar Jun 11, 2025
4688975
fix cache
Gabizar Jun 12, 2025
fc39c3f
fix cache
Gabizar Jun 12, 2025
f7af35c
fix cache
Gabizar Jun 12, 2025
bffa95b
add return statement
Gabizar Jun 15, 2025
aff77d6
default queue size 1
Gabizar Jun 15, 2025
766e413
fix utils collision with comfy/utils.py
Gabizar Jun 23, 2025
a9ba45f
added output nodes types
Gabizar Jul 3, 2025
98122a2
remove seed and noise_seed randomization
Gabizar Jul 21, 2025
63052c2
Merge pull request #2 from Gabizar/feat/cache-nodes
Gabizar Jul 21, 2025
a9443fd
Merge pull request #1 from Gabizar/feat/parameterize-python-workflow
Gabizar Jul 21, 2025
df39bde
add output nodes
Aug 7, 2025
d528ab5
Merge pull request #3 from Gabizar/feat/AddOutputNodes
gal-h Aug 7, 2025
664f474
universal output node support
Aug 10, 2025
a0ae8bd
inject req_id to output nodes, add to list of display only nodes whic…
Aug 13, 2025
9440791
add param mappings validation
Aug 13, 2025
e561cfe
Merge pull request #5 from Gabizar/feat/universalOutputNodeSupport
gal-h Aug 13, 2025
f937fd1
always take in req_id even if not mapped to anything
Aug 27, 2025
4303971
Merge pull request #7 from Gabizar/feat/forceReqIdInput
gal-h Aug 27, 2025
2381ef7
init custom nodes async
Aug 27, 2025
8c4c6e1
Merge pull request #8 from Gabizar/feat/merge_initialize_custom_nodes…
gal-h Aug 27, 2025
89bef9b
async
Sep 2, 2025
c578aa9
bugfix - f string
Sep 3, 2025
2d89e74
bugfix - init prompt server in async too from current loop
Sep 3, 2025
f7331c0
Merge pull request #9 from Gabizar/feat/async
gal-h Sep 4, 2025
60a55c9
add macos file to ignore
Sep 7, 2025
156a8f8
add tests
Sep 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,6 @@ cython_debug/
*.sql
*.sqlite
*.xml

# macOS files
.DS_Store
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,17 @@ if __name__ == "__main__":
7. After running `comfyui_to_python.py`, a new .py file will be created in the current working directory. If you made no changes, look for `workflow_api.py`.

8. Now you can execute the newly created .py file to generate images without launching a server.

## Testing

To run the test suite:

```bash
# Install testing dependencies
pip install -r tests/requirements.txt

# Run all tests
python run_tests.py
```

For detailed testing information, see [tests/TESTING.md](tests/TESTING.md).
Loading