@@ -65,17 +65,17 @@ def INPUT_TYPES(cls):
6565 # 临时规则开关
6666 "custom_rule" : ("BOOLEAN" , {"default" : False , "label_on" : "Enable" , "label_off" : "Disable" , "tooltip" : "Enable to use custom rule content below instead of preset" }),
6767 # 临时规则内容输入框
68- "custom_rule_content" : ("STRING" , {"multiline" : True , "default" : "" , "placeholder" : "在此输入临时规则,仅在启用'临时规则'时生效" }),
68+ "custom_rule_content" : ("STRING" , {"multiline" : True , "default" : "" , "placeholder" : "在此输入临时规则,仅在启用'临时规则'时生效" , "tooltip" : "在此输入您的自定义规则内容; 💡输入触发词[R],可以让节点每次都被执行" }),
6969 # 用户提示词
70- "user_prompt" : ("STRING" , {"multiline" : True , "default" : "" , "placeholder" : "填写的要优化的提示词原文,若存在原文端口输入和内容输入,将合并提交" }),
70+ "user_prompt" : ("STRING" , {"multiline" : True , "default" : "" , "placeholder" : "填写的要优化的提示词原文,若存在原文端口输入和内容输入,将合并提交" , "tooltip" : "想要增强的原始提示词; 💡输入触发词[R],可以让节点每次都被执行" }),
7171 # 扩写服务
7272 "llm_service" : (service_options , {"default" : default_service , "tooltip" : "Select LLM service and model" }),
7373 # Ollama自动释放显存
7474 "ollama_auto_unload" : ("BOOLEAN" , {"default" : True , "label_on" : "Enable" , "label_off" : "Disable" , "tooltip" : "Auto unload Ollama model after generation" }),
7575 },
7676 "optional" : {
7777 # 原文输入端口
78- "source_text" : ("STRING" , {"default" : "" , "multiline" : True , "defaultInput" : True , "placeholder" : "Input text to enhance..." }),
78+ "source_text" : ("STRING" , {"default" : "" , "multiline" : True , "defaultInput" : True , "placeholder" : "Input text to enhance..." , "tooltip" : "可选的输入文本; 💡输入触发词[R],可以让节点每次都被执行" }),
7979 },
8080 "hidden" : {
8181 "unique_id" : "UNIQUE_ID" ,
0 commit comments