Skip to content

Commit 0bded00

Browse files
author
Attashe
committed
remove comments
1 parent 90fff36 commit 0bded00

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

invokeai/app/invocations/image_context_utils.py

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -131,21 +131,6 @@ def invoke(self, context: InvocationContext) -> ImageOutput:
131131
image_dto = context.images.save(image=image_crop)
132132
return ImageOutput.build(image_dto)
133133

134-
# class ACEppProcessorField(BaseModel):
135-
# """A FLUX Redux conditioning tensor primitive value"""
136-
137-
# conditioning: TensorField = Field(description="The Redux image conditioning tensor.")
138-
# mask: Optional[TensorField] = Field(
139-
# default=None,
140-
# description="The mask associated with this conditioning tensor. Excluded regions should be set to False, "
141-
# "included regions should be set to True.",
142-
# )
143-
# image_name: Optional[str] = Field(
144-
# default=None,
145-
# description="The name of the image associated with this conditioning tensor. This is used to store the image "
146-
# "in the context.",
147-
# )
148-
149134

150135
@invocation_output("ace_plus_plus_output")
151136
class ACEppProcessorOutput(BaseInvocationOutput):
@@ -260,17 +245,3 @@ def invoke(self, context: InvocationContext) -> ACEppProcessorOutput:
260245
crop_height=int(out_H * scale),
261246
crop_width=int(out_W * scale),
262247
)
263-
264-
265-
# @invocation(
266-
# "ace_plus_plus_conditioning",
267-
# title="ACE++ conditioning",
268-
# tags=["image_processing"],
269-
# version="1.0.0",
270-
# )
271-
# class ACEppConditioning(BaseInvocation):
272-
# reference_image: ImageField = InputField(description="Reference Image")
273-
274-
# def invoke(self, context: InvocationContext):
275-
# pass
276-

0 commit comments

Comments
 (0)