mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-05-06 08:26:45 -03:00
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
from __future__ import annotations
|
|
|
|
from ..services.wildcard_service import contains_dynamic_syntax, get_wildcard_service
|
|
|
|
|
|
class TextLM:
|
|
"""A simple text node with autocomplete support."""
|
|
|
|
NAME = "Text (LoraManager)"
|
|
CATEGORY = "Lora Manager/utils"
|
|
DESCRIPTION = (
|
|
"A simple text input node with autocomplete support for tags, styles, and wildcard expansion."
|
|
)
|
|
|
|
@classmethod
|
|
def INPUT_TYPES(cls):
|
|
return {
|
|
"required": {
|
|
"text": (
|
|
"AUTOCOMPLETE_TEXT_PROMPT,STRING",
|
|
{
|
|
"widgetType": "AUTOCOMPLETE_TEXT_PROMPT",
|
|
"placeholder": "Enter text... /character, /artist, /wildcard for quick search",
|
|
"tooltip": "The text output. Wildcard references inserted with /wildcard are expanded at runtime.",
|
|
},
|
|
),
|
|
},
|
|
"optional": {
|
|
"seed": (
|
|
"INT",
|
|
{
|
|
"forceInput": True,
|
|
"tooltip": "Optional seed for wildcard generation. Leave unconnected for non-deterministic wildcard expansion.",
|
|
},
|
|
),
|
|
},
|
|
}
|
|
|
|
RETURN_TYPES = ("STRING",)
|
|
RETURN_NAMES = ("STRING",)
|
|
OUTPUT_TOOLTIPS = ("The text output.",)
|
|
FUNCTION = "process"
|
|
|
|
@classmethod
|
|
def IS_CHANGED(cls, text: str, seed: int | None = None):
|
|
if contains_dynamic_syntax(text) and seed is None:
|
|
return float("NaN")
|
|
return False
|
|
|
|
def process(self, text: str, seed: int | None = None):
|
|
return (get_wildcard_service().expand_text(text, seed=seed),)
|