File tree Expand file tree Collapse file tree 6 files changed +9
-12
lines changed
Expand file tree Collapse file tree 6 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ RUN conda run -n comfystream pip install --no-cache-dir \
6464 ${TensorRT_ROOT}/python/tensorrt-10.9.0.34-cp311-none-linux_x86_64.whl
6565
6666# Clone ComfyUI
67- RUN git clone --branch v0.3.39 --depth 1 https://github.com/comfyanonymous/ComfyUI.git /workspace/ComfyUI
67+ RUN git clone --branch v0.3.27 --depth 1 https://github.com/comfyanonymous/ComfyUI.git /workspace/ComfyUI
6868
6969# Copy only files needed for setup
7070COPY ./src/comfystream/scripts /workspace/comfystream/src/comfystream/scripts
@@ -105,7 +105,4 @@ RUN conda config --set auto_activate_base false && \
105105# Set comfystream environment as default
106106RUN echo "conda activate comfystream" >> ~/.bashrc
107107
108- # Set /workspace/ComfyUI to PYTHONPATH
109- RUN echo "export PYTHONPATH=/workspace/ComfyUI" >> ~/.bashrc
110-
111108WORKDIR /workspace/comfystream
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ version = "0.1.2"
99license = { file = " LICENSE" }
1010dependencies = [
1111 " asyncio" ,
12- " comfyui @ git+https://github.com/livepeer /ComfyUI.git@6a39b5b016cc108cbc5dda2fd4b32a51161ab150 " ,
12+ " comfyui @ git+https://github.com/hiddenswitch /ComfyUI.git@ce3583ad42c024b8f060d0002cbe20c265da6dc8 " ,
1313 " aiortc" ,
1414 " aiohttp" ,
1515 " aiohttp_cors" ,
Original file line number Diff line number Diff line change 11asyncio
2- comfyui @ git+https://github.com/livepeer /ComfyUI.git@6a39b5b016cc108cbc5dda2fd4b32a51161ab150
2+ comfyui @ git+https://github.com/hiddenswitch /ComfyUI.git@ce3583ad42c024b8f060d0002cbe20c265da6dc8
33aiortc
44aiohttp
55aiohttp_cors
Original file line number Diff line number Diff line change 55from comfystream import tensor_cache
66from comfystream .utils import convert_prompt
77
8- from hiddenswitch_comfy .api .components .schema .prompt import PromptDictInput
9- from hiddenswitch_comfy .cli_args_types import Configuration
10- from hiddenswitch_comfy .client .embedded_comfy_client import EmbeddedComfyClient
8+ from comfy .api .components .schema .prompt import PromptDictInput
9+ from comfy .cli_args_types import Configuration
10+ from comfy .client .embedded_comfy_client import EmbeddedComfyClient
1111
1212logger = logging .getLogger (__name__ )
1313
@@ -114,7 +114,7 @@ async def get_available_nodes(self):
114114 return {}
115115
116116 try :
117- from hiddenswitch_comfy .nodes .package import import_all_nodes_in_workspace
117+ from comfy .nodes .package import import_all_nodes_in_workspace
118118 nodes = import_all_nodes_in_workspace ()
119119
120120 all_prompts_nodes_info = {}
Original file line number Diff line number Diff line change 11import copy
22
33from typing import Dict , Any
4- from hiddenswitch_comfy .api .components .schema .prompt import Prompt , PromptDictInput
4+ from comfy .api .components .schema .prompt import Prompt , PromptDictInput
55
66
77def create_load_tensor_node ():
Original file line number Diff line number Diff line change 11import pytest
22
3- from hiddenswitch_comfy .api .components .schema .prompt import Prompt
3+ from comfy .api .components .schema .prompt import Prompt
44from comfystream .utils import convert_prompt
55
66
You can’t perform that action at this time.
0 commit comments