代码拉取完成,页面将自动刷新
from .utils import *
class FusionText:
@classmethod
def INPUT_TYPES(s):
return {"required": {"text_1": ("STRING", {"default": "", "forceInput": True}), "text_2": ("STRING", {"default": "", "forceInput": True})}}
RETURN_TYPES = ("STRING",)
FUNCTION = "combine"
CATEGORY = "autotrigger"
def combine(self, text_1, text_2):
return (text_1 + text_2, )
class Randomizer:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"text_1":("STRING", {"forceInput": True}),
"text_2":("STRING", {"forceInput": True} ),
"seed": ("INT", {"default": 0, "min": 0, "max": 0xffffffffffffffff}),
},
"optional": {
"lora_1":("LORA_STACK", ),
"lora_2":("LORA_STACK", ),
}
}
RETURN_TYPES = ("STRING", "LORA_STACK")
RETURN_NAMES = ("text", "lora stack")
FUNCTION = "randomize"
#OUTPUT_NODE = False
CATEGORY = "autotrigger"
def randomize(self, text_1, text_2, seed, lora_1=[], lora_2=[]):
if seed %2 == 0:
return (text_1, lora_1)
return (text_2, lora_2)
class TextInputBasic:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"text":("STRING", {"default":"", "multiline":True}),
},
"optional": {
"prefix":("STRING", {"default":"", "forceInput": True}),
"suffix":("STRING", {"default":"", "forceInput": True}),
}
}
RETURN_TYPES = ("STRING",)
RETURN_NAMES = ("text", )
FUNCTION = "get_text"
#OUTPUT_NODE = False
CATEGORY = "autotrigger"
def get_text(self, text, prefix="", suffix=""):
return (prefix + text + suffix, )
class TagsSelector:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"tags_list": ("LIST", {"default": []}),
"selector": ("STRING", {"default": ":"}),
"weight": ("FLOAT", {"default": 1.0, "min": -10.0, "max": 10.0, "step": 0.01}),
"ensure_comma": ("BOOLEAN", {"default": True})
},
"optional": {
"prefix":("STRING", {"default":"", "forceInput": True}),
"suffix":("STRING", {"default":"", "forceInput": True}),
}
}
RETURN_TYPES = ("STRING",)
FUNCTION = "select_tags"
CATEGORY = "autotrigger"
def select_tags(self, tags_list, selector, weight, ensure_comma, prefix="", suffix=""):
if weight != 1.0:
tags_list = [f"({tag}:{weight})" for tag in tags_list]
output = parse_selector(selector, tags_list)
if ensure_comma:
striped_prefix = prefix.strip()
striped_suffix = suffix.strip()
if striped_prefix != "" and not striped_prefix.endswith(",") and output != "" and not output.startswith(","):
prefix = striped_prefix + ", "
if output != "" and not output.endswith(",") and striped_suffix != "" and not striped_suffix.startswith(","):
suffix = ", " + striped_suffix
return (prefix + output + suffix, )
class TagsFormater:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"tags_list": ("LIST", {"default": []}),
},
}
RETURN_TYPES = ("STRING",)
FUNCTION = "format_tags"
CATEGORY = "autotrigger"
def format_tags(self, tags_list):
output = ""
i = 0
for tag in tags_list:
output += f'{i} : "{tag}"\n'
i+=1
return (output,)
class LoraListNames:
@classmethod
def INPUT_TYPES(s):
LORA_LIST = sorted(folder_paths.get_filename_list("loras"), key=str.lower)
return {
"required": {
"lora_name": (LORA_LIST,),
}
}
RETURN_TYPES = ("STRING",)
RETURN_NAMES = ("lora_name",)
FUNCTION = "output_selected"
CATEGORY = "autotrigger"
def output_selected(self, lora_name):
name = lora_name
return (name,)
# A dictionary that contains all nodes you want to export with their names
# NOTE: names should be globally unique
NODE_CLASS_MAPPINGS = {
"Randomizer": Randomizer,
"FusionText": FusionText,
"TextInputBasic": TextInputBasic,
"TagsSelector": TagsSelector,
"TagsFormater": TagsFormater,
"LoraListNames": LoraListNames,
}
# A dictionary that contains the friendly/humanly readable titles for the nodes
NODE_DISPLAY_NAME_MAPPINGS = {
"Randomizer": "Randomizer",
"FusionText": "FusionText",
"TextInputBasic": "TextInputBasic",
"TagsSelector": "TagsSelector",
"TagsFormater": "TagsFormater",
"LoraListNames": "LoraListNames",
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。