File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
invokeai/nodes/bria_nodes Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class BriaControlNetOutput(BaseInvocationOutput):
36
36
37
37
@invocation (
38
38
"bria_controlnet" ,
39
- title = "Bria ControlNet" ,
39
+ title = "ControlNet - Bria " ,
40
40
tags = ["controlnet" , "bria" ],
41
41
category = "controlnet" ,
42
42
version = "1.0.0" ,
Original file line number Diff line number Diff line change 10
10
11
11
@invocation (
12
12
"bria_decoder" ,
13
- title = "Bria Decoder" ,
13
+ title = "Decoder - Bria " ,
14
14
tags = ["image" , "bria" ],
15
15
category = "image" ,
16
16
version = "1.0.0" ,
17
17
classification = Classification .Prototype ,
18
18
)
19
19
class BriaDecoderInvocation (BaseInvocation ):
20
- latents : LatentsField = InputField (
21
- description = FieldDescriptions .latents ,
22
- input = Input .Connection ,
23
- )
24
20
vae : VAEField = InputField (
25
21
description = FieldDescriptions .vae ,
26
22
input = Input .Connection ,
27
23
)
24
+ latents : LatentsField = InputField (
25
+ description = FieldDescriptions .latents ,
26
+ input = Input .Connection ,
27
+ )
28
28
29
29
@torch .no_grad ()
30
30
def invoke (self , context : InvocationContext ) -> ImageOutput :
You can’t perform that action at this time.
0 commit comments