ComfyUI_NAIDGenerator icon indicating copy to clipboard operation
ComfyUI_NAIDGenerator copied to clipboard

VibeTransfer still failing with 500 after latest update

Open FoxZzz opened this issue 2 months ago • 1 comments

Summary
After updating to 55d8868, the VibeTransfer fails with a 500 error.

Screenshot
Image

Steps to Reproduce

  1. Update ComfyUI_NAIDGenerator to commit 55d8868.
  2. In ComfyUI, run workflow: Load Image - VibeTransferOptions - ModelOption - Generate - Preview Image
  3. Observe the following 500 Error log (excerpt)
...
 - [ComfyUI-Manager] All startup tasks have been completed.
 - got prompt
 - !!! Exception during processing !!! 500 Server Error: Internal Server Error for url: https://image.novelai.net/ai/generate-image
 - Traceback (most recent call last):
  File "M:\ComfyUI_windows_portable\ComfyUI\execution.py", line 427, in execute
    output_data, output_ui, has_subgraph, has_pending_tasks = await get_output_data(prompt_id, unique_id, obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "M:\ComfyUI_windows_portable\ComfyUI\execution.py", line 270, in get_output_data
    return_values = await _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "M:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-lora-manager\py\metadata_collector\metadata_hook.py", line 172, in async_map_node_over_list_with_metadata
    results = await original_map_node_over_list(prompt_id, unique_id, obj, input_data_all, func, allow_interrupt, execution_block_cb, pre_execute_cb)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "M:\ComfyUI_windows_portable\ComfyUI\execution.py", line 244, in _async_map_node_over_list
    await process_inputs(input_dict, i)
  File "M:\ComfyUI_windows_portable\ComfyUI\execution.py", line 232, in process_inputs
    result = f(**inputs)
             ^^^^^^^^^^^
  File "M:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_naidgenerator\nodes.py", line 295, in generate
    raise e
  File "M:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_naidgenerator\nodes.py", line 279, in generate
    zipped_bytes = generate_image(self.access_token, positive, model, action, params, timeout, retry)
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "M:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_naidgenerator\utils.py", line 68, in generate_image
    response.raise_for_status()
  File "M:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\requests\models.py", line 1024, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 500 Server Error: Internal Server Error for url: https://image.novelai.net/ai/generate-image

 - Prompt executed in 15.41 seconds

FoxZzz avatar Nov 09 '25 14:11 FoxZzz