comfyui-nuvu 0.0.16__cp39-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- comfyui_nuvu/__init__.py +14 -0
- comfyui_nuvu/nuvu_server.pyd +0 -0
- comfyui_nuvu/web/__init__.py +3 -0
- comfyui_nuvu/web/installers/__init__.py +41 -0
- comfyui_nuvu/web/installers/cuda_installer.pyd +0 -0
- comfyui_nuvu/web/installers/onnxruntime_installer.pyd +0 -0
- comfyui_nuvu/web/installers/pytorch_installer.pyd +0 -0
- comfyui_nuvu/web/installers/sageattention_installer.pyd +0 -0
- comfyui_nuvu/web/installers/shared.pyd +0 -0
- comfyui_nuvu/web/installers/triton_installer.pyd +0 -0
- comfyui_nuvu/web/installers/vs_build_tools_installer.pyd +0 -0
- comfyui_nuvu/web/model_downloads.pyd +0 -0
- comfyui_nuvu/web/package_installer.pyd +0 -0
- comfyui_nuvu/web/setup_modules/__init__.py +8 -0
- comfyui_nuvu/web/setup_modules/auth.pyd +0 -0
- comfyui_nuvu/web/setup_modules/config.pyd +0 -0
- comfyui_nuvu/web/setup_modules/custom_nodes.pyd +0 -0
- comfyui_nuvu/web/setup_modules/downloads.pyd +0 -0
- comfyui_nuvu/web/setup_modules/environment.pyd +0 -0
- comfyui_nuvu/web/setup_modules/file_operations.pyd +0 -0
- comfyui_nuvu/web/setup_modules/logging_setup.pyd +0 -0
- comfyui_nuvu/web/setup_modules/utils.pyd +0 -0
- comfyui_nuvu/web/workflow_downloader.pyd +0 -0
- comfyui_nuvu-0.0.16.dist-info/METADATA +213 -0
- comfyui_nuvu-0.0.16.dist-info/RECORD +27 -0
- comfyui_nuvu-0.0.16.dist-info/WHEEL +5 -0
- comfyui_nuvu-0.0.16.dist-info/top_level.txt +1 -0
comfyui_nuvu/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
comfyui_nuvu - nuvu extension package for ComfyUI
|
|
3
|
+
|
|
4
|
+
This is the generic package init for the pip-installable wheel.
|
|
5
|
+
It has NO import-time side effects (no route registration, no ComfyUI dependencies).
|
|
6
|
+
|
|
7
|
+
Route registration happens only when ComfyUI loads the custom node entrypoint
|
|
8
|
+
(custom_nodes/ComfyUI-nuvu/__init__.py), NOT when importing this package.
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.16" # Replaced by CI from git tag
|
|
12
|
+
__all__ = ["__version__"]
|
|
13
|
+
|
|
14
|
+
|
|
Binary file
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""nuvu package installers.
|
|
2
|
+
|
|
3
|
+
Each installer module exposes install/uninstall entry points used by web/package_installer.py.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from comfyui_nuvu.web.installers.shared import _verify_prerequisites, logger
|
|
7
|
+
|
|
8
|
+
from comfyui_nuvu.web.installers.pytorch_installer import install_pytorch, reinstall_custom_nodes
|
|
9
|
+
from comfyui_nuvu.web.installers.sageattention_installer import install_sageattention, uninstall_sageattention
|
|
10
|
+
from comfyui_nuvu.web.installers.onnxruntime_installer import install_onnxruntime_gpu, uninstall_onnxruntime_gpu
|
|
11
|
+
from comfyui_nuvu.web.installers.triton_installer import install_triton_windows, uninstall_triton_windows
|
|
12
|
+
from comfyui_nuvu.web.installers.cuda_installer import install_cuda_toolkit
|
|
13
|
+
from comfyui_nuvu.web.installers.vs_build_tools_installer import install_vs_build_tools, open_vs_build_shell
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
# Shared utilities
|
|
17
|
+
'_verify_prerequisites',
|
|
18
|
+
'logger',
|
|
19
|
+
# PyTorch
|
|
20
|
+
'install_pytorch',
|
|
21
|
+
'reinstall_custom_nodes',
|
|
22
|
+
# SageAttention
|
|
23
|
+
'install_sageattention',
|
|
24
|
+
'uninstall_sageattention',
|
|
25
|
+
# ONNX Runtime
|
|
26
|
+
'install_onnxruntime_gpu',
|
|
27
|
+
'uninstall_onnxruntime_gpu',
|
|
28
|
+
# Triton
|
|
29
|
+
'install_triton_windows',
|
|
30
|
+
'uninstall_triton_windows',
|
|
31
|
+
# CUDA
|
|
32
|
+
'install_cuda_toolkit',
|
|
33
|
+
# VS Build Tools
|
|
34
|
+
'install_vs_build_tools',
|
|
35
|
+
'open_vs_build_shell',
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: comfyui-nuvu
|
|
3
|
+
Version: 0.0.16
|
|
4
|
+
Summary: Nuvu custom node for ComfyUI
|
|
5
|
+
Author: Nuvu Labs
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/nuvulabs/ComfyUI-Nuvu
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: requests>=2.31.0
|
|
19
|
+
Requires-Dist: huggingface_hub[hf_transfer]
|
|
20
|
+
Requires-Dist: hf_xet
|
|
21
|
+
Requires-Dist: keyring>=24.3.0
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
> **Usage License:** nuvu Labs grants you a limited license to run the nuvu plugin inside ComfyUI for its intended functionality in commercial or non-commercial workflows. Any other commercial use—including copying, modifying, sublicensing, or redistributing this code or derivative works—requires prior written consent from nuvu Labs.
|
|
27
|
+
|
|
28
|
+
### **nuvu makes private AI generation in ComfyUI effortless — built for film and VFX artists who demand privacy, polish, and more time to create. A plug-in right in ComfyUI, which makes the newest, professional-level, workflows a click away.**
|
|
29
|
+
|
|
30
|
+
## About nuvu Labs
|
|
31
|
+
|
|
32
|
+
nuvu Labs is an agency that excels at implementing, scaling, and finetuning AI pipelines in the film and VFX industries. We focus on security and data because your content is your backbone, and uploading your content to any cloud AI service risks your content becoming training material in the future.
|
|
33
|
+
|
|
34
|
+
## Table of Contents
|
|
35
|
+
|
|
36
|
+
- [The nuvu Advantage](#the-nuvu-advantage)
|
|
37
|
+
- [Installing nuvu](#installing-nuvu)
|
|
38
|
+
- [Auto-Installers](#auto-installers)
|
|
39
|
+
- [Comfy Manager](#comfy-manager)
|
|
40
|
+
- [Manual Install](#manual-install)
|
|
41
|
+
- [RunPod Template](#runpod-template)
|
|
42
|
+
- [Create an Account](#create-an-account)
|
|
43
|
+
- [Free Features](#free-features)
|
|
44
|
+
- [Paid Features](#paid-features)
|
|
45
|
+
- [How to create an account](#how-to-create-an-account)
|
|
46
|
+
- [How to subscribe](#how-to-subscribe)
|
|
47
|
+
- [Using nuvu](#using-nuvu)
|
|
48
|
+
- [ComfyUI Optimizer](#comfyui-optimizer)
|
|
49
|
+
- [Workflow Installer](#workflow-installer)
|
|
50
|
+
- [Subgraphs](#subgraphs)
|
|
51
|
+
- [Model Installer](#model-installer)
|
|
52
|
+
- [Install Missing (Coming Soon)](#install-missing-coming-soon)
|
|
53
|
+
- [User Configuration](#user-configuration)
|
|
54
|
+
- [How Can We Help?](#how-can-we-help)
|
|
55
|
+
- [Logout](#logout)
|
|
56
|
+
|
|
57
|
+
## The nuvu Advantage
|
|
58
|
+
|
|
59
|
+
The nuvu Plug-in for ComfyUI gives you instant access to premium workflows specifically designed for production pipelines. The nuvu difference is when you download a workflow, you get everything needed to run the workflow. No more searching for obscure custom nodes or models. On top of that, the workflows are condensed into easy-to-use subgraphs that can be searched just like any node. Let's walk through an example.
|
|
60
|
+
|
|
61
|
+
Let's install Z-Image-Turbo
|
|
62
|
+

|
|
63
|
+
|
|
64
|
+
After clicking Install, all workflows, subgraphs, custom nodes, and models for running Z-Image-Turbo will install.
|
|
65
|
+

|
|
66
|
+
|
|
67
|
+
Now let's restart ComfyUI, and check out what was installed for us!
|
|
68
|
+
|
|
69
|
+
This is the workflow that was downloaded. It contains a Z-Image-Turbo subgraph with documentation for what all of the inputs and outputs of the subgraph do. The models were already installed, so just click "Run" and as long as you have the VRAM to run the workflow, it will run immediately.
|
|
70
|
+
|
|
71
|
+

|
|
72
|
+
|
|
73
|
+
Here is the searchable subgraph. Search for it as you would any other node, and connect it into your favorite image-to-video workflow or anywhere else you'd like.
|
|
74
|
+

|
|
75
|
+
|
|
76
|
+
nuvu has created an extremely efficient pipeline for getting workflows into your hands quickly, so when a new model is released, nuvu is committed to delivering the capability to you quickly and seamlessly.
|
|
77
|
+
|
|
78
|
+
## Installing nuvu
|
|
79
|
+
|
|
80
|
+
nuvu Labs offers a variety of ways to install the nuvu Plug-in into ComfyUI for optimal convenience.
|
|
81
|
+
|
|
82
|
+
### Auto-Installers
|
|
83
|
+
|
|
84
|
+
Download the applicable script for your system, which can be found [at this link](https://github.com/nuvulabs/ComfyUI-Nuvu/releases).
|
|
85
|
+
|
|
86
|
+
#### Windows Install
|
|
87
|
+
Place the .bat file in the folder location on windows that you want to install ComfyUI-nuvu in. Double click on the .bat file, and it will start to install ComfyUI with nuvu.
|
|
88
|
+

|
|
89
|
+
|
|
90
|
+
Inside the ComfyUI Folder, you will find a file called "run_comfy.bat". Double click this file to launch ComfyUI. Wait until the terminal stops producing text and then go to the next step.
|
|
91
|
+

|
|
92
|
+
|
|
93
|
+
Navigate to [localhost:8188](localhost:8188) or [127.0.0.1:8188](127.0.0.1:8188) in your web browser of choice (Firefox or Google Chrome recommended).
|
|
94
|
+
|
|
95
|
+
#### Linux Install
|
|
96
|
+
Place the .sh file in the folder location that you want to install ComfyUI-nuvu in. Open a shell and run:
|
|
97
|
+
|
|
98
|
+
```./linux_install_nuvu_comfy.sh```
|
|
99
|
+
|
|
100
|
+
This will clone ComfyUI into your current folder. Inside the ComfyUI Folder, you will find a file called "run_comfy.sh". Double click this file or open a shell and run it to launch ComfyUI. Wait until the terminal stops producing text and then go to the next step
|
|
101
|
+
|
|
102
|
+
Navigate to [localhost:8188](localhost:8188) or [127.0.0.1:8188](127.0.0.1:8188) in your web browser of choice (Firefox or Google Chrome recommended).
|
|
103
|
+
|
|
104
|
+
### Comfy Manager
|
|
105
|
+
|
|
106
|
+
test2
|
|
107
|
+
|
|
108
|
+
### RunPod Template
|
|
109
|
+
|
|
110
|
+
Use our referral code to sign up for RunPod if you don't already have an account! [https://runpod.io?ref=rqu7tin8](https://runpod.io?ref=rqu7tin8)
|
|
111
|
+
|
|
112
|
+
nuvu Labs provides a RunPod template to quickly deploy ComfyUI from anywhere, even if you don't own a GPU yourself. You can find it [at this link](https://console.runpod.io/deploy?template=ntf53vsuqj&ref=rqu7tin8)
|
|
113
|
+
|
|
114
|
+
When you click on the link and have a valid account created, you'll be prompted to start a pod.
|
|
115
|
+

|
|
116
|
+
|
|
117
|
+
nuvu Labs recommends setting up Network storage of 500gb minimum, preferably up to 1TB or more to handle the large size of the models. This will allow you to keep all your work and you won't have to restart all over again each time you start a new pod.
|
|
118
|
+
|
|
119
|
+
Select your network storage, and CUDA Versions as shown below. CUDA 12.8 or 12.9 are required becasue of blackwell architecture support for RTX 50xx series.
|
|
120
|
+

|
|
121
|
+
|
|
122
|
+
Then select a GPU from the list below. For most production work, nuvu Labs recommends an RTX 5090 at minimum. RTX 5090 is an excellent balance of speed and value.
|
|
123
|
+
|
|
124
|
+
Once you've selected your GPU, and confirm that the ComfyUI-nuvu template is selected, click "Deploy On-Demand"
|
|
125
|
+

|
|
126
|
+
|
|
127
|
+
If this is your first time launching ComfyUI on your network storage or if you do not plan to use a network storage, expect about 20mins of first time setup.
|
|
128
|
+
|
|
129
|
+
Go to the logs of your RunPod pod, and wait until you see the circled message in the container logs. That tells you that ComfyUI is ready.
|
|
130
|
+

|
|
131
|
+
|
|
132
|
+
Click "Connect", and then click "ComfyUI" to open ComfyUI. A JupyterLab session is also provided, where you can view the pod's filesystem.
|
|
133
|
+

|
|
134
|
+
|
|
135
|
+
### Docker
|
|
136
|
+
The docker command to run the ComfyUI-nuvu container is:
|
|
137
|
+
```
|
|
138
|
+
docker run -d \
|
|
139
|
+
--name comfy-nuvu \
|
|
140
|
+
--gpus all \
|
|
141
|
+
-p 8188:8188 \
|
|
142
|
+
-p 8888:8888 \
|
|
143
|
+
-v /path/to/workspace:/workspace \
|
|
144
|
+
nuvulabs/comfyui-nuvu:latest
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## Create an Account
|
|
148
|
+
|
|
149
|
+
### Free Features
|
|
150
|
+
- PyTorch Version Switcher
|
|
151
|
+
- Sage Attention Installer
|
|
152
|
+
- Windows Triton Installer
|
|
153
|
+
- Slow Depth & Pose Map Fix
|
|
154
|
+
- Cuda Toolkit Installer
|
|
155
|
+
- Windows Build Tools Installer
|
|
156
|
+
- Launch Shell with Build Tools Activated
|
|
157
|
+
|
|
158
|
+
### Paid Features
|
|
159
|
+
- Auto-Install 100+ top-quality curated and subgraphed workflows
|
|
160
|
+
- 400+ workflows in the roadmap
|
|
161
|
+
- Subgraphs published straight into your library to use as nodes
|
|
162
|
+
- Model Auto-Installer
|
|
163
|
+
- (coming soon) Install All Missing Models & Custom Nodes for a workflow
|
|
164
|
+
|
|
165
|
+
### How to create a free account
|
|
166
|
+
|
|
167
|
+
Once you have nuvu installed into ComfyUI, click on the nuvu button at the top of ComfyUI.
|
|
168
|
+

|
|
169
|
+
|
|
170
|
+
Click the "Continue with Login" button on the dialog that pops up. All authentication is handled by Auth0 for optimal user security. The only personal data that nuvu Labs stores are name and email address for account handling.
|
|
171
|
+

|
|
172
|
+
|
|
173
|
+
Authenticate the Auth0 form with either email/password, github, or google.
|
|
174
|
+

|
|
175
|
+
|
|
176
|
+
Once you've completed log-in, you should be re-directed back to ComfyUI, where you will see the nuvu Dashboard appear.
|
|
177
|
+

|
|
178
|
+
|
|
179
|
+
### How to subscribe to nuvu Premium
|
|
180
|
+
|
|
181
|
+
To purchase a license to access over 100 premium workflows and subgraphs, click the "Purchase License" button on the left side.
|
|
182
|
+
|
|
183
|
+

|
|
184
|
+
|
|
185
|
+
That will bring you to our nuvu Account Dashboard, where you can Upgrade your account to the paid version.
|
|
186
|
+

|
|
187
|
+
|
|
188
|
+
All purchases are handled securely through Stripe. nuvu does not store any of your financial information, all financial transactions run through Stripe.
|
|
189
|
+

|
|
190
|
+
|
|
191
|
+
After subscribing, head back to ComfyUI, refresh your browser, and you should see your account upgraded to "Premium Subscription" on the left side.
|
|
192
|
+
|
|
193
|
+

|
|
194
|
+
|
|
195
|
+
## Using nuvu
|
|
196
|
+
|
|
197
|
+
### ComfyUI Optimizer
|
|
198
|
+
|
|
199
|
+
### Workflow Installer
|
|
200
|
+
|
|
201
|
+
#### Subgraphs
|
|
202
|
+
|
|
203
|
+
### Model Installer
|
|
204
|
+
|
|
205
|
+
### Install Missing (Coming Soon!)
|
|
206
|
+
When Implemented, this will allow users to open any workflow in ComfyUI and nuvu will attempt to find all custom nodes and models needed for that workflow, and install them for you. No more searching through the manager or scouring huggingface to find the correct model.
|
|
207
|
+
|
|
208
|
+
### User Configuration
|
|
209
|
+
|
|
210
|
+
### How Can We Help?
|
|
211
|
+
|
|
212
|
+
### Logout
|
|
213
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
comfyui_nuvu/nuvu_server.pyd,,
|
|
2
|
+
comfyui_nuvu/__init__.py,,
|
|
3
|
+
comfyui_nuvu/web/model_downloads.pyd,,
|
|
4
|
+
comfyui_nuvu/web/package_installer.pyd,,
|
|
5
|
+
comfyui_nuvu/web/workflow_downloader.pyd,,
|
|
6
|
+
comfyui_nuvu/web/__init__.py,,
|
|
7
|
+
comfyui_nuvu/web/installers/cuda_installer.pyd,,
|
|
8
|
+
comfyui_nuvu/web/installers/onnxruntime_installer.pyd,,
|
|
9
|
+
comfyui_nuvu/web/installers/pytorch_installer.pyd,,
|
|
10
|
+
comfyui_nuvu/web/installers/sageattention_installer.pyd,,
|
|
11
|
+
comfyui_nuvu/web/installers/shared.pyd,,
|
|
12
|
+
comfyui_nuvu/web/installers/triton_installer.pyd,,
|
|
13
|
+
comfyui_nuvu/web/installers/vs_build_tools_installer.pyd,,
|
|
14
|
+
comfyui_nuvu/web/installers/__init__.py,,
|
|
15
|
+
comfyui_nuvu/web/setup_modules/auth.pyd,,
|
|
16
|
+
comfyui_nuvu/web/setup_modules/config.pyd,,
|
|
17
|
+
comfyui_nuvu/web/setup_modules/custom_nodes.pyd,,
|
|
18
|
+
comfyui_nuvu/web/setup_modules/downloads.pyd,,
|
|
19
|
+
comfyui_nuvu/web/setup_modules/environment.pyd,,
|
|
20
|
+
comfyui_nuvu/web/setup_modules/file_operations.pyd,,
|
|
21
|
+
comfyui_nuvu/web/setup_modules/logging_setup.pyd,,
|
|
22
|
+
comfyui_nuvu/web/setup_modules/utils.pyd,,
|
|
23
|
+
comfyui_nuvu/web/setup_modules/__init__.py,,
|
|
24
|
+
comfyui_nuvu-0.0.16.dist-info/METADATA,,
|
|
25
|
+
comfyui_nuvu-0.0.16.dist-info/top_level.txt,,
|
|
26
|
+
comfyui_nuvu-0.0.16.dist-info/WHEEL,,
|
|
27
|
+
comfyui_nuvu-0.0.16.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
comfyui_nuvu
|