-
Notifications
You must be signed in to change notification settings - Fork 0
/
ard_text_box.py
39 lines (34 loc) · 1.41 KB
/
ard_text_box.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
@author: initials AMAA
@title: Ardenius AI
@nickname: Ardenius
@description: ARD Text Box: text box takes input text outputs a string of text.
"""
# licensed under General Public License v3.0 all rights reserved © 2024
# Owner initials: AMAA
# nickname: Ardenius
# email: ardenius7@gmail.com
# website: https://ko-fi.com/ardenius
# ➡️ follow me at https://ko-fi.com/ardenius in the top right corner (follow)
# 📸 Change the mood ! by Visiting my AI Image Gallery
# 🏆 Support me by getting Premium Members only Perks (Premium SD Models, ComfyUI custom nodes, and more to come)
# below code is based upon ComfyUI code licensed under General Public License v3.0 https://www.gnu.org/licenses/gpl-3.0.txt by
# contributers found here https://github.com/comfyanonymous/ComfyUI
# thus all code here is released to the user as per the GPL V3.0 terms.
class ARD_TEXT_BOX:
# def __init__(self):
# pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"input_text": ("STRING", {"multiline": True, "dynamicPrompts": True, "tooltip": "enter your text here"}),
}
}
RETURN_NAMES = ("string_out",)
RETURN_TYPES = ("STRING",)
FUNCTION = "ard_text_box"
CATEGORY = "Ardenius"
DESCRIPTION = "ARD Text Box: text box takes input text outputs a string of text."
def ard_text_box(self, input_text):
return (input_text,)