mohamedsobhi777's picture
Synced repo using 'sync_with_huggingface' Github Action
86d4cbe verified
class FramerComfyInputStringNode:
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"name": ("STRING", {"default": "string_input"}),
},
"optional": {
"value": ("STRING", {
"default": "",
"multiline": False,
})
}
}
RETURN_TYPES = ("STRING",)
FUNCTION = "get_value"
CATEGORY = "FramerComfy"
def get_value(self, name, value):
return (value,)