Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

hello i need some help. I have set up comfyui, and there are no errors when I run it, but when I try to use the generate character thing, it gives me a request failed with code: 400, and I need to check that comfyui is running and loras are loaded but those 2 things seem to be running just fine and can generate images so i think the game is just not recoginzeing that the model is running despite the adress being the http://127.0.0.1:8188/ so i dont know what to do.

Sorry for long answer. Post info from comfyui terminal after you send a request. Are there any messages?

after the error it says

invalid prompt: {'type': 'invalid_prompt', 'message': 'Cannot execute because node InspyrenetRembgAdvanced does not exist.', 'details': "Node ID '#20'", 'extra_info': {}}

Global interrupt (no prompt_id specified)

(2 edits)

Does the folder exist at YOUR_PATH\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inspyrenet-Rembg ?

Does in contain Inspyrenet_Rembg.py and __init__.py ?

Does __init__.py read like this (open with text editor):

from .Inspyrenet_Rembg import InspyrenetRembg, InspyrenetRembgAdvanced

NODE_CLASS_MAPPINGS = {

    "InspyrenetRembg" : InspyrenetRembg,

    "InspyrenetRembgAdvanced" : InspyrenetRembgAdvanced,

}

NODE_DISPLAY_NAME_MAPPINGS = {

    "InspyrenetRembg": "Inspyrenet Rembg",

    "InspyrenetRembgAdvanced": "Inspyrenet Rembg Advanced"

}

__all__ = ['NODE_CLASS_MAPPINGS', "NODE_DISPLAY_NAME_MAPPINGS"]

?

If you CTRL+F into terminal window with "invalid prompt" error and search for "Import times for custom nodes" - is \ComfyUI-Inspyrenet-Rembg imported properly?

i did not have that node, so I went to the manager, found it, and downloaded it, and now it is generating characters. I appreciate your help