From 4b36d60e46dfcfcfab93152569a9888332662ed2 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Mon, 26 Jan 2026 14:42:47 +0800 Subject: [PATCH] feat(prompt): enhance placeholder with quick tag search instructions Update the placeholder text in the PromptLM class to include guidance for quick tag search functionality. The new placeholder now reads "Enter prompt... /char, /artist for quick tag search", providing users with immediate cues on how to utilize tag search features directly within the input field. This improves usability by making advanced functionality more discoverable. --- py/nodes/prompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/nodes/prompt.py b/py/nodes/prompt.py index 04a3ee7c..829df0d1 100644 --- a/py/nodes/prompt.py +++ b/py/nodes/prompt.py @@ -17,7 +17,7 @@ class PromptLM: "text": ( "AUTOCOMPLETE_TEXT_PROMPT", { - "placeholder": "Enter prompt...", + "placeholder": "Enter prompt... /char, /artist for quick tag search", "tooltip": "The text to be encoded.", }, ),