Skip to content

Commit e926d2f

Browse files
fix(nodes): add beta classification to new inpainting support nodes
1 parent ad8885c commit e926d2f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

invokeai/app/invocations/image.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,7 @@ def invoke(self, context: InvocationContext) -> ImageOutput:
11471147
category="image",
11481148
version="1.0.0",
11491149
tags=["image", "crop"],
1150+
classification=Classification.Beta,
11501151
)
11511152
class CropImageToBoundingBoxInvocation(BaseInvocation, WithMetadata, WithBoard):
11521153
"""Crop an image to the given bounding box. If the bounding box is omitted, the image is cropped to the non-transparent pixels."""
@@ -1173,6 +1174,7 @@ def invoke(self, context: InvocationContext) -> ImageOutput:
11731174
category="image",
11741175
version="1.0.0",
11751176
tags=["image", "crop"],
1177+
classification=Classification.Beta,
11761178
)
11771179
class PasteImageIntoBoundingBoxInvocation(BaseInvocation, WithMetadata, WithBoard):
11781180
"""Paste the source image into the target image at the given bounding box.

invokeai/app/invocations/mask.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ def invoke(self, context: InvocationContext) -> ImageOutput:
225225
tags=["mask"],
226226
category="mask",
227227
version="1.0.0",
228+
classification=Classification.Beta,
228229
)
229230
class GetMaskBoundingBoxInvocation(BaseInvocation, WithMetadata):
230231
"""Gets the bounding box of the given mask image."""

0 commit comments

Comments
 (0)