mohamedsobhi777's picture
Synced repo using 'sync_with_huggingface' Github Action
86d4cbe verified
class FramerComfyInputImageNode:
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"name": ("STRING", {"default": "image_input"}),
"image": ("IMAGE",),
},
}
RETURN_TYPES = ("IMAGE","STRING",)
FUNCTION = "get_image"
CATEGORY = "FramerComfy"
def get_image(self, name, image):
return (image,)