add support for kwargs inputs to allow arbitrary inputs from frontend

used to output selected combo index
This commit is contained in:
pythongosssss
2026-01-24 16:16:08 -08:00
parent 4e6a1b66a9
commit a875a1bfd0
3 changed files with 21 additions and 5 deletions

View File

@@ -175,7 +175,7 @@ def get_input_data(inputs, class_def, unique_id, execution_list=None, dynprompt=
continue
obj = cached.outputs[output_index]
input_data_all[x] = obj
elif input_category is not None:
elif input_category is not None or (is_v3 and class_def.ACCEPT_ALL_INPUTS):
input_data_all[x] = [input_data]
if is_v3: