feat: add Text node with autocomplete support

Introduce a new TextLM node to the Lora Manager extension, providing a simple text input with autocomplete functionality for tags and styles. The node is integrated into the module's import system and node class mappings, enabling users to utilize autocomplete features for efficient prompt creation.
This commit is contained in:
Will Miao
2026-01-28 11:39:05 +08:00
parent 18d3ecb4da
commit 565b61d1c2
3 changed files with 35 additions and 8 deletions

View File

@@ -115,11 +115,3 @@ class WanVideoLoraTextSelectLM:
active_loras_text = " ".join(formatted_loras)
return (loras_list, trigger_words_text, active_loras_text)
NODE_CLASS_MAPPINGS = {
"WanVideoLoraTextSelectLM": WanVideoLoraTextSelectLM
}
NODE_DISPLAY_NAME_MAPPINGS = {
"WanVideoLoraTextSelectLM": "WanVideo Lora Select From Text (LoraManager)"
}