File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
invokeai/frontend/web/src/features/nodes/util/graph/generation Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -84,13 +84,10 @@ export const buildFLUXGraph = async (
8484 // translations.
8585 assert ( generationMode === 'inpaint' || generationMode === 'outpaint' , t ( 'toast.fluxFillIncompatibleWithT2IAndI2I' ) ) ;
8686
87- // FLUX Fill wants much higher guidance values than normal FLUX - silently "fix" the value for the user if it is
88- // way too low.
87+ // FLUX Fill wants much higher guidance values than normal FLUX - silently "fix" the value for the user.
8988 // TODO(psyche): Figure out a way to alert the user that this is happening - maybe return warnings from the graph
9089 // builder and toast them?
91- if ( guidance < 25 ) {
92- guidance = 30 ;
93- }
90+ guidance = 30 ;
9491 }
9592
9693 const { positivePrompt } = getPresetModifiedPrompts ( state ) ;
You can’t perform that action at this time.
0 commit comments