File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ class FieldDescriptions:
126
126
negative_cond = "Negative conditioning tensor"
127
127
noise = "Noise tensor"
128
128
clip = "CLIP (tokenizer, text encoder, LoRAs) and skipped layer count"
129
- t5Encoder = "T5 tokenizer and text encoder"
129
+ t5_encoder = "T5 tokenizer and text encoder"
130
130
unet = "UNet (scheduler, LoRAs)"
131
131
transformer = "Transformer"
132
132
vae = "VAE"
Original file line number Diff line number Diff line change 21
21
)
22
22
class FluxTextEncoderInvocation (BaseInvocation ):
23
23
"""Encodes and preps a prompt for a flux image."""
24
+
24
25
clip : CLIPField = InputField (
25
26
title = "CLIP" ,
26
27
description = FieldDescriptions .clip ,
27
28
input = Input .Connection ,
28
29
)
29
30
t5_encoder : T5EncoderField = InputField (
30
31
title = "T5Encoder" ,
31
- description = FieldDescriptions .t5Encoder ,
32
+ description = FieldDescriptions .t5_encoder ,
32
33
input = Input .Connection ,
33
34
)
34
35
max_seq_len : Literal [256 , 512 ] = InputField (description = "Max sequence length for the desired flux model" )
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ class FluxModelLoaderOutput(BaseInvocationOutput):
162
162
163
163
transformer : TransformerField = OutputField (description = FieldDescriptions .transformer , title = "Transformer" )
164
164
clip : CLIPField = OutputField (description = FieldDescriptions .clip , title = "CLIP" )
165
- t5_encoder : T5EncoderField = OutputField (description = FieldDescriptions .t5Encoder , title = "T5 Encoder" )
165
+ t5_encoder : T5EncoderField = OutputField (description = FieldDescriptions .t5_encoder , title = "T5 Encoder" )
166
166
vae : VAEField = OutputField (description = FieldDescriptions .vae , title = "VAE" )
167
167
max_seq_len : Literal [256 , 512 ] = OutputField (description = FieldDescriptions .vae , title = "Max Seq Length" )
168
168
You can’t perform that action at this time.
0 commit comments