We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Return type mismatch between linked nodes: sampler_name, ['euler', 'euler_ancestral', 'heun', 'heunpp2', 'dpm_2', 'dpm_2_ancestral', 'lms', 'dpm_fast', 'dpm_adaptive', 'dpmpp_2s_ancestral', 'dpmpp_sde', 'dpmpp_sde_gpu', 'dpmpp_2m', 'dpmpp_2m_sde', 'dpmpp_2m_sde_gpu', 'dpmpp_3m_sde', 'dpmpp_3m_sde_gpu', 'ddpm', 'lcm', 'ddim', 'uni_pc', 'uni_pc_bh2'] != COMBO
This is the same with scheduler_name and model_name nodes.
m!
The text was updated successfully, but these errors were encountered:
Referring to my code below, modify the nodes.py file. sampler_name, scheduler_name can be modified like this
class SamplerSelector: CATEGORY = 'ImageSaver/utils' RETURN_TYPES = ("COMBO",) # <--fix here RETURN_NAMES = ("sampler_name",) FUNCTION = "get_names" @classmethod def INPUT_TYPES(cls): return {"required": {"sampler_name": (comfy.samplers.KSampler.SAMPLERS,)}} def get_names(self, sampler_name): return ([sampler_name],) # <--and here: return an array
Sorry, something went wrong.
There appears to be a bit more to this.
If I connect it to KSampler, select "Auto Queue" in Comfy, and then click "Queue Prompt" it works and it works forever apparently.
But the moment I don't have "Auto Queue" enabled, and I click "Queue Prompt" multiple times...then it throws the error.
There's some sort of validation that happens when you queue up multiple runs that doesn't happen when there's only one item in the queue at a time.
No branches or pull requests
This is the same with scheduler_name and model_name nodes.
m!
The text was updated successfully, but these errors were encountered: