@@ -128,6 +128,11 @@ def __ne__(self, __value: object) -> bool:
128128 f' Positive Prompt\n { "-" * TOOLTIP_UNDERLINE } \n '
129129 f' - β Describe what you do not want to see in the image.\n \n '
130130)})
131+ TYPE_TILED_DECODE = ('BOOLEAN' , {'default' : False , 'tooltip' : (
132+ f' Tiiled Decode\n { "-" * TOOLTIP_UNDERLINE } \n '
133+ f' - VAE decoding for large images can be a severe bottleneck.\n \n '
134+ f' - Tiled decode helps reduce time by performing decoding on smaller chunks of the image instead of decoding the whole image at once.\n \n '
135+ )})
131136
132137# MODEL
133138TYPE_MODEL_IN = ('MODEL' , {'tooltip' : (
@@ -296,6 +301,16 @@ def pad_label(label):
296301 f' - This field is not functional. It is just a label for the group of settings below.\n \n '
297302)})
298303
304+ TYPE_FLOWSTATE_LABEL_PROMPT_CHEF_QWEN = ('STRING' , {'default' : pad_label ('βοΈ Qwen Edit Prompt' ), 'tooltip' : (
305+ f' Label\n { "-" * TOOLTIP_UNDERLINE } \n '
306+ f' - This field is not functional. It is just a label for the group of settings below.\n \n '
307+ )})
308+
309+ TYPE_FLOWSTATE_LABEL_PROMPT_CHEF_FLUX = ('STRING' , {'default' : pad_label ('β¨ Flux Refinement Prompt' ), 'tooltip' : (
310+ f' Label\n { "-" * TOOLTIP_UNDERLINE } \n '
311+ f' - This field is not functional. It is just a label for the group of settings below.\n \n '
312+ )})
313+
299314
300315##
301316# FLOWSTATE CREATOR GENERIC TYPES
@@ -440,6 +455,12 @@ def pad_label(label):
440455TYPE_FLUX_ENGINE_OUT = ('MODEL' , 'CLIP' , 'VAE' , 'IMAGE' , 'LATENT' )
441456
442457
458+ ##
459+ # FLOWSTATE FLUX ENGINE
460+ ##
461+ TYPE_FLUX_ENGINE_OUT = ('MODEL' , 'CLIP' , 'VAE' , 'MODEL' , 'CLIP' , 'VAE' , 'IMAGE' , 'IMAGE' )
462+
463+
443464##
444465# FLOWSTATE WAN STUDIO
445466##
@@ -495,13 +516,23 @@ def pad_label(label):
495516##
496517# FLOWSTATE QUICK EDIT
497518##
498- TYPE_PROMPT_QUICK_EDIT_CHANGES = ('STRING' , {'multiline' : True , 'default' : 'Describe the edits you want Qwen to make.' , 'tooltip' : (
499- f' Positive Prompt\n { "-" * TOOLTIP_UNDERLINE } \n '
500- f' - Describe the edits you want Qwen to make.\n \n '
519+ TYPE_PROMPT_CHEF_QWEN = ('STRING' , {'multiline' : True , 'default' : 'βοΈ Describe the edits you want Qwen to make.' , 'tooltip' : (
520+ f' Edit Prompt\n { "-" * TOOLTIP_UNDERLINE } \n '
521+ f' - βοΈ Describe the edits you want Qwen to make.\n \n '
501522)})
502- TYPE_PROMPT_QUICK_EDIT_REFINE = ('STRING' , {'multiline' : True , 'default' : 'Describe the new image after the edits are made.' , 'tooltip' : (
503- f' Positive Prompt\n { "-" * TOOLTIP_UNDERLINE } \n '
504- f' - Describe the new image after the edits are made.\n \n '
523+ TYPE_PROMPT_CHEF_FLUX = ('STRING' , {'multiline' : True , 'default' : 'β¨ Describe the final output image after edits are made.' , 'tooltip' : (
524+ f' Refinement Prompt\n { "-" * TOOLTIP_UNDERLINE } \n '
525+ f' - β¨ Describe the final output image after edits are made.\n \n '
526+ )})
527+ TYPE_REFINE_DENOISE = ('FLOAT' , {
528+ 'default' : 0.24 , 'min' : 0.0 , 'max' : 1.0 , 'step' : 0.01 ,
529+ 'tooltip' : (
530+ f' Sampler Denoise Amount\n { "-" * TOOLTIP_UNDERLINE } \n '
531+ f' - The amount of denoising applied, lower values will maintain the structure of the initial image allowing for image to image sampling.\n \n '
532+ )
533+ })
534+ TYPE_CHEF_IMAGE_IN = ('IMAGE' , {'tooltip' : (
535+ f' π₯ Ingredients Image\n { "-" * TOOLTIP_UNDERLINE } \n '
536+ f' - An image input for the FlowState Chef to work with.\n \n '
505537)})
506- TYPE_QUICK_EDIT_OUT = ('MODEL' , 'CLIP' , 'VAE' , 'IMAGE' , 'LATENT' )
507538
0 commit comments