asagi4 / comfyui-prompt-control

ComfyUI nodes for prompt editing and LoRA control
GNU General Public License v3.0
199 stars 16 forks source link

[BUG] float() argument must be a string or a real number, not 'Tree' #59

Closed alenknight closed 1 month ago

alenknight commented 1 month ago

Before you start Verify the following:

  1. That your ComfyUI is up to date
  2. yes, just updated/
  3. That the extension is up to date - yes. just installed it.
  4. That the issue isn't in the "Known Issues" section in the README - repeat issue, but different solution needed.

Describe the bug A clear and concise description of what the bug is.

getting the dreaded "float() argument must be a string or a real number, not 'Tree' " I'm on lark 1.2.2... which is >= 1.1.9... so I'm a bit confused what the issue could be now.

To Reproduce Information needed to trigger the problem. If possible, attach a workflow to reproduce the problem ran the sample workflow with the latest version of lark.

alenknight commented 1 month ago
 ComfyUI Error Report
## Error Details
- **Node Type:** PromptToSchedule
- **Exception Type:** TypeError
- **Exception Message:** float() argument must be a string or a real number, not 'Tree'
## Stack Trace

File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i)

File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree)

File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = []

File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^

File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) * 100 ^^^^^^^^

## System Information
- **ComfyUI Version:** v0.2.2
- **Arguments:** ComfyUI\main.py --windows-standalone-build --listen
- **OS:** nt
- **Python Version:** 3.11.6 (tags/v3.11.6:8b6ee5b, Oct  2 2023, 14:57:12) [MSC v.1935 64 bit (AMD64)]
- **Embedded Python:** true
- **PyTorch Version:** 2.2.1+cu121
## Devices

- **Name:** cuda:0 NVIDIA GeForce RTX 3090 : cudaMallocAsync
  - **Type:** cuda
  - **VRAM Total:** 25769279488
  - **VRAM Free:** 22265912072
  - **Torch VRAM Total:** 2080374784
  - **Torch VRAM Free:** 59169544

## Logs

2024-09-17 18:02:58,601 - root - INFO - 1.9 seconds: C:\AI\Comfyui\ComfyUI\custom_nodes\was-node-suite-comfyui 2024-09-17 18:02:58,601 - root - INFO - 2.1 seconds: C:\AI\Comfyui\ComfyUI\custom_nodes\comfy_mtb 2024-09-17 18:02:58,601 - root - INFO - 2.4 seconds: C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-art-venture 2024-09-17 18:02:58,601 - root - INFO - 2024-09-17 18:02:58,623 - root - INFO -

2024-09-17 18:02:58,623 - root - INFO -

Starting server 2024-09-17 18:02:58,623 - root - INFO - To see the GUI go to: http://192.168.1.127:8188 or http://127.0.0.1:8188 2024-09-17 18:02:58,623 - root - INFO - To see the GUI go to: https://192.168.1.127:8189 or https://127.0.0.1:8189 2024-09-17 18:03:01,598 - httpx - INFO - HTTP Request: GET https://api.openai.com/v1/models "HTTP/1.1 200 OK" 2024-09-17 18:03:02,146 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:03:02,148 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:03:05,518 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:03:05,520 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:05,835 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:03:05,835 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:06,148 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:03:06,150 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:10,296 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:03:10,297 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:03:12,157 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:03:12,158 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:12,469 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:03:12,470 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:12,788 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:03:12,789 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:42,110 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:03:42,111 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:03:43,878 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:03:43,879 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:44,192 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:03:44,192 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:44,504 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:03:44,504 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:48,409 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:03:48,409 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:03:50,180 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:03:50,181 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:50,490 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:03:50,490 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:03:50,800 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:03:50,801 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:04:45,204 - root - INFO - got prompt 2024-09-17 18:04:45,211 - root - ERROR - Failed to validate prompt for output 127: 2024-09-17 18:04:45,211 - root - ERROR - UpscaleModelLoader 138: 2024-09-17 18:04:45,211 - root - ERROR - - Value not in list: model_name: '4xUltrasharp_4xUltrasharpV10.pt' not in (list of length 71) 2024-09-17 18:04:45,211 - root - ERROR - VAELoader 25: 2024-09-17 18:04:45,212 - root - ERROR - - Value not in list: vae_name: 'vae-ft-mse-840000-ema-pruned_fp16.safetensors' not in (list of length 21) 2024-09-17 18:04:45,212 - root - ERROR - CheckpointLoaderSimple 4: 2024-09-17 18:04:45,212 - root - ERROR - - Value not in list: ckpt_name: 'aniverse_v30Pruned.safetensors' not in (list of length 77) 2024-09-17 18:04:45,212 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,212 - root - ERROR - Failed to validate prompt for output 114: 2024-09-17 18:04:45,212 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,213 - root - ERROR - Failed to validate prompt for output 102: 2024-09-17 18:04:45,213 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,213 - root - ERROR - Failed to validate prompt for output 128: 2024-09-17 18:04:45,214 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,214 - root - ERROR - Failed to validate prompt for output 140: 2024-09-17 18:04:45,214 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,214 - root - ERROR - Failed to validate prompt for output 9: 2024-09-17 18:04:45,214 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,214 - root - ERROR - Failed to validate prompt for output 132: 2024-09-17 18:04:45,215 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,215 - root - ERROR - Failed to validate prompt for output 103: 2024-09-17 18:04:45,215 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,215 - root - ERROR - Failed to validate prompt for output 123: 2024-09-17 18:04:45,215 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,215 - root - ERROR - Failed to validate prompt for output 105: 2024-09-17 18:04:45,215 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,216 - root - ERROR - Failed to validate prompt for output 106: 2024-09-17 18:04:45,216 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,216 - root - ERROR - Failed to validate prompt for output 115: 2024-09-17 18:04:45,216 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,216 - root - ERROR - Failed to validate prompt for output 124: 2024-09-17 18:04:45,216 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,216 - root - ERROR - Failed to validate prompt for output 136: 2024-09-17 18:04:45,216 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,217 - root - ERROR - Failed to validate prompt for output 104: 2024-09-17 18:04:45,217 - root - ERROR - Output will be ignored 2024-09-17 18:04:45,217 - root - WARNING - invalid prompt: {'type': 'prompt_outputs_failed_validation', 'message': 'Prompt outputs failed validation', 'details': '', 'extra_info': {}} 2024-09-17 18:05:23,910 - root - INFO - got prompt 2024-09-17 18:05:23,915 - root - ERROR - Failed to validate prompt for output 127: 2024-09-17 18:05:23,916 - root - ERROR - UpscaleModelLoader 138: 2024-09-17 18:05:23,916 - root - ERROR - - Value not in list: model_name: '4xUltrasharp_4xUltrasharpV10.pt' not in (list of length 71) 2024-09-17 18:05:23,916 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,917 - root - ERROR - Failed to validate prompt for output 114: 2024-09-17 18:05:23,917 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,917 - root - ERROR - Failed to validate prompt for output 102: 2024-09-17 18:05:23,917 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,918 - root - ERROR - Failed to validate prompt for output 128: 2024-09-17 18:05:23,918 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,918 - root - ERROR - Failed to validate prompt for output 140: 2024-09-17 18:05:23,918 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,919 - root - ERROR - Failed to validate prompt for output 9: 2024-09-17 18:05:23,919 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,919 - root - ERROR - Failed to validate prompt for output 132: 2024-09-17 18:05:23,919 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,919 - root - ERROR - Failed to validate prompt for output 103: 2024-09-17 18:05:23,920 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,920 - root - ERROR - Failed to validate prompt for output 123: 2024-09-17 18:05:23,920 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,920 - root - ERROR - Failed to validate prompt for output 105: 2024-09-17 18:05:23,920 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,920 - root - ERROR - Failed to validate prompt for output 106: 2024-09-17 18:05:23,920 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,921 - root - ERROR - Failed to validate prompt for output 115: 2024-09-17 18:05:23,921 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,921 - root - ERROR - Failed to validate prompt for output 124: 2024-09-17 18:05:23,921 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,921 - root - ERROR - Failed to validate prompt for output 136: 2024-09-17 18:05:23,921 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,921 - root - ERROR - Failed to validate prompt for output 104: 2024-09-17 18:05:23,921 - root - ERROR - Output will be ignored 2024-09-17 18:05:23,922 - root - WARNING - invalid prompt: {'type': 'prompt_outputs_failed_validation', 'message': 'Prompt outputs failed validation', 'details': '', 'extra_info': {}} 2024-09-17 18:05:38,287 - root - INFO - got prompt 2024-09-17 18:05:40,110 - root - INFO - model weight dtype torch.float16, manual cast: None 2024-09-17 18:05:40,113 - root - INFO - model_type EPS 2024-09-17 18:05:48,542 - root - INFO - Using xformers attention in VAE 2024-09-17 18:05:48,543 - root - INFO - Using xformers attention in VAE 2024-09-17 18:05:48,957 - root - INFO - Requested to load SDXLClipModel 2024-09-17 18:05:48,957 - root - INFO - Loading 1 new model 2024-09-17 18:05:48,968 - root - INFO - loaded completely 0.0 1560.802734375 True 2024-09-17 18:05:51,281 - root - INFO - loaded straight to GPU 2024-09-17 18:05:51,281 - root - INFO - Requested to load SDXL 2024-09-17 18:05:51,281 - root - INFO - Loading 1 new model 2024-09-17 18:05:51,308 - root - INFO - loaded completely 0.0 4897.0483474731445 True 2024-09-17 18:05:51,873 - root - INFO - Requested to load SDXLClipModel 2024-09-17 18:05:51,873 - root - INFO - Loading 1 new model 2024-09-17 18:05:52,851 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,851 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,851 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,851 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,851 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,852 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:52,853 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:05:58,627 - root - INFO - Using xformers attention in VAE 2024-09-17 18:05:58,628 - root - INFO - Using xformers attention in VAE 2024-09-17 18:05:59,022 - root - INFO - Requested to load AutoencoderKL 2024-09-17 18:05:59,022 - root - INFO - Loading 1 new model 2024-09-17 18:05:59,055 - root - INFO - loaded completely 0.0 159.55708122253418 True 2024-09-17 18:06:04,862 - root - INFO - Requested to load SDXL 2024-09-17 18:06:04,863 - root - INFO - Loading 1 new model 2024-09-17 18:06:17,882 - root - INFO - Requested to load SDXL 2024-09-17 18:06:17,882 - root - INFO - Loading 1 new model 2024-09-17 18:06:25,413 - root - INFO - Prompt executed in 47.12 seconds 2024-09-17 18:07:43,919 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:07:43,919 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:07:45,686 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:07:45,687 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:07:45,996 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:07:45,997 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:07:46,308 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:07:46,309 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:07:50,207 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:07:50,208 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:07:51,985 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:07:51,986 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:07:52,297 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:07:52,297 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:07:52,610 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:07:52,611 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:08:10,181 - root - INFO - got prompt 2024-09-17 18:08:10,184 - root - ERROR - Failed to validate prompt for output 33: 2024-09-17 18:08:10,185 - root - ERROR - * CheckpointLoaderSimple 10: 2024-09-17 18:08:10,185 - root - ERROR - - Value not in list: ckpt_name: 'revanimated_v122-0900-0868-0708.safetensors' not in (list of length 77) 2024-09-17 18:08:10,185 - root - ERROR - Output will be ignored 2024-09-17 18:08:10,185 - root - ERROR - Failed to validate prompt for output 31: 2024-09-17 18:08:10,185 - root - ERROR - Output will be ignored 2024-09-17 18:08:10,185 - root - WARNING - invalid prompt: {'type': 'prompt_outputs_failed_validation', 'message': 'Prompt outputs failed validation', 'details': '', 'extra_info': {}} 2024-09-17 18:10:39,580 - root - INFO - got prompt 2024-09-17 18:10:39,874 - root - INFO - model weight dtype torch.float16, manual cast: None 2024-09-17 18:10:39,875 - root - INFO - model_type EPS 2024-09-17 18:10:42,484 - root - INFO - Using xformers attention in VAE 2024-09-17 18:10:42,486 - root - INFO - Using xformers attention in VAE 2024-09-17 18:10:43,196 - root - INFO - loaded straight to GPU 2024-09-17 18:10:43,196 - root - INFO - Requested to load BaseModel 2024-09-17 18:10:43,196 - root - INFO - Loading 1 new model 2024-09-17 18:10:43,211 - root - INFO - loaded completely 0.0 1639.406135559082 True 2024-09-17 18:10:43,688 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:10:43,718 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit self._call_userfunc(subtree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc return getattr(self, tree.data, self.default)(tree) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:10:43,719 - root - INFO - Prompt executed in 4.14 seconds 2024-09-17 18:11:02,116 - root - INFO - got prompt 2024-09-17 18:11:02,387 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:11:02,388 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit self._call_userfunc(subtree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc return getattr(self, tree.data, self.default)(tree) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:11:02,389 - root - INFO - Prompt executed in 0.27 seconds 2024-09-17 18:15:13,662 - root - INFO - got prompt 2024-09-17 18:15:15,564 - root - INFO - model weight dtype torch.float16, manual cast: None 2024-09-17 18:15:15,564 - root - INFO - model_type EPS 2024-09-17 18:15:17,317 - root - INFO - Using xformers attention in VAE 2024-09-17 18:15:17,319 - root - INFO - Using xformers attention in VAE 2024-09-17 18:15:17,595 - root - INFO - Requested to load SDXLClipModel 2024-09-17 18:15:17,595 - root - INFO - Loading 1 new model 2024-09-17 18:15:17,606 - root - INFO - loaded completely 0.0 1560.802734375 True 2024-09-17 18:15:18,140 - root - INFO - loaded straight to GPU 2024-09-17 18:15:18,141 - root - INFO - Requested to load SDXL 2024-09-17 18:15:18,141 - root - INFO - Loading 1 new model 2024-09-17 18:15:18,168 - root - INFO - loaded completely 0.0 4897.0483474731445 True 2024-09-17 18:15:18,745 - root - INFO - Requested to load SDXLClipModel 2024-09-17 18:15:18,746 - root - INFO - Loading 1 new model 2024-09-17 18:15:19,271 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,271 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,272 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:19,273 - root - WARNING - WARNING: shape mismatch when trying to apply embedding, embedding will be ignored 768 != 1280 2024-09-17 18:15:22,295 - root - INFO - Processing interrupted 2024-09-17 18:15:22,295 - root - INFO - Prompt executed in 8.62 seconds 2024-09-17 18:15:24,585 - root - INFO - got prompt 2024-09-17 18:15:26,090 - root - INFO - model weight dtype torch.float16, manual cast: None 2024-09-17 18:15:26,091 - root - INFO - model_type EPS 2024-09-17 18:15:26,656 - root - INFO - Using xformers attention in VAE 2024-09-17 18:15:26,657 - root - INFO - Using xformers attention in VAE 2024-09-17 18:15:26,899 - root - INFO - loaded straight to GPU 2024-09-17 18:15:26,899 - root - INFO - Requested to load BaseModel 2024-09-17 18:15:26,899 - root - INFO - Loading 1 new model 2024-09-17 18:15:26,911 - root - INFO - loaded completely 0.0 1639.406135559082 True 2024-09-17 18:15:27,362 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:15:27,364 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit self._call_userfunc(subtree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc return getattr(self, tree.data, self.default)(tree) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:15:27,365 - root - INFO - Prompt executed in 2.78 seconds 2024-09-17 18:19:26,013 - root - INFO - got prompt 2024-09-17 18:19:26,315 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:19:26,317 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit self._call_userfunc(subtree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc return getattr(self, tree.data, self.default)(tree) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:19:26,318 - root - INFO - Prompt executed in 0.30 seconds 2024-09-17 18:23:33,120 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:23:33,120 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:23:35,076 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:23:35,077 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:35,407 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:23:35,408 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:35,734 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:23:35,735 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:39,909 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:23:39,909 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:23:41,779 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:23:41,780 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:42,094 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:23:42,095 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:42,412 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:23:42,413 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:23:50,721 - root - INFO - got prompt 2024-09-17 18:23:50,997 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:23:50,999 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:23:51,000 - root - INFO - Prompt executed in 0.28 seconds 2024-09-17 18:31:58,112 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:31:58,112 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:32:00,116 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:32:00,116 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:32:00,436 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:32:00,437 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:32:00,755 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:32:00,756 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:32:04,863 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-09-17 18:32:04,864 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-IF_AI_tools\IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\input\IF_AI\presets\agents'

2024-09-17 18:32:06,850 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Zho' node. 2024-09-17 18:32:06,850 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 146, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 130, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:32:07,172 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Multiline_Zho' node. 2024-09-17 18:32:07,173 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 354, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage.py", line 338, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:32:07,493 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'Text_Image_Frame_Zho' node. 2024-09-17 18:32:07,493 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\server.py", line 486, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\server.py", line 454, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 145, in INPUT_TYPES cls.CACHE_FONTS() File "C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Text_Image-Composite\Zho_TextImage_frame.py", line 129, in CACHE_FONTS fonts.extend(comfy_dir.glob(f"**/{extension}")) File "pathlib.py", line 953, in glob File "pathlib.py", line 408, in _select_from File "pathlib.py", line 355, in _select_from File "pathlib.py", line 938, in _scandir FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\AI\Comfyui\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\wildcards'

2024-09-17 18:33:09,061 - root - INFO - got prompt 2024-09-17 18:33:09,370 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:33:09,371 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:33:09,372 - root - INFO - Prompt executed in 0.31 seconds 2024-09-17 18:35:20,071 - root - INFO - got prompt 2024-09-17 18:35:20,119 - root - INFO - Requested to load SD1ClipModel 2024-09-17 18:35:20,119 - root - INFO - Loading 1 new model 2024-09-17 18:35:20,403 - root - INFO - loaded completely 0.0 235.84423828125 True 2024-09-17 18:35:20,580 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:35:20,581 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:35:20,582 - root - INFO - Prompt executed in 0.51 seconds 2024-09-17 18:35:26,289 - root - INFO - got prompt 2024-09-17 18:35:26,572 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:35:26,573 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:35:26,574 - root - INFO - Prompt executed in 0.28 seconds 2024-09-17 18:39:46,605 - root - INFO - got prompt 2024-09-17 18:39:46,902 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:39:46,903 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:39:46,904 - root - INFO - Prompt executed in 0.29 seconds 2024-09-17 18:39:56,126 - root - INFO - got prompt 2024-09-17 18:39:56,410 - root - ERROR - !!! Exception during processing !!! float() argument must be a string or a real number, not 'Tree' 2024-09-17 18:39:56,411 - root - ERROR - Traceback (most recent call last): File "C:\AI\Comfyui\ComfyUI\execution.py", line 317, in execute output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 192, in get_output_data return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "C:\AI\Comfyui\ComfyUI\execution.py", line 158, in process_inputs results.append(getattr(obj, func)(*inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\node_other.py", line 152, in parse schedules = parse_prompt_schedules(text) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 394, in parse_prompt_schedules return PromptSchedule(prompt) ^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 277, in init self.interpolations, self.parsed_prompt = self._parse() ^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 292, in _parse interpolation_steps, steps = get_steps(tree) ^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 129, in get_steps CollectSteps().visit(tree) File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 316, in visit args = [] File "C:\AI\Comfyui\python_embeded\Lib\site-packages\lark\visitors.py", line 294, in _call_userfunc Useful for huge trees. ^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 105, in scheduled tree.children[i] = tostep(tree.children[i]) ^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\AI\Comfyui\ComfyUI\custom_nodes\comfyui-prompt-control\prompt_control\parser.py", line 94, in tostep w = float(s) 100 ^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'Tree'

2024-09-17 18:39:56,412 - root - INFO - Prompt executed in 0.28 seconds

## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.

Workflow too large. Please manually upload the workflow from local file system.


## Additional Context
(Please add any additional context or steps to reproduce the error here)
asagi4 commented 1 month ago

Can you find the w = float(s) line in parser.py that's throwing the exception and put a print("s:", s, repr(s)) before it? I also won't be able to reproduce this without the prompt that's failing.

alenknight commented 1 month ago

odd..... I just ran it and it's working. I didn't do an update, just restarted my pc overnight... I was just running the sample workflow you have on the readme. thanks, all good I guess :)