Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,7 +33,7 @@ sys.path.append(comfyui_path)
|
|
| 33 |
# Inicializar o ComfyUI
|
| 34 |
def init_comfyui():
|
| 35 |
import execution
|
| 36 |
-
from nodes import NODE_CLASS_MAPPINGS,
|
| 37 |
import server
|
| 38 |
import asyncio
|
| 39 |
|
|
@@ -44,7 +44,7 @@ def init_comfyui():
|
|
| 44 |
# Inicializar servidor e n贸s
|
| 45 |
server_instance = server.PromptServer(loop)
|
| 46 |
execution.PromptQueue(server_instance)
|
| 47 |
-
|
| 48 |
|
| 49 |
return NODE_CLASS_MAPPINGS
|
| 50 |
|
|
|
|
| 33 |
# Inicializar o ComfyUI
|
| 34 |
def init_comfyui():
|
| 35 |
import execution
|
| 36 |
+
from nodes import NODE_CLASS_MAPPINGS, init_extra_nodes
|
| 37 |
import server
|
| 38 |
import asyncio
|
| 39 |
|
|
|
|
| 44 |
# Inicializar servidor e n贸s
|
| 45 |
server_instance = server.PromptServer(loop)
|
| 46 |
execution.PromptQueue(server_instance)
|
| 47 |
+
init_extra_nodes()
|
| 48 |
|
| 49 |
return NODE_CLASS_MAPPINGS
|
| 50 |
|