Skip to content

Commit 249166d

Browse files
committed
tooltips
1 parent 7a3ba28 commit 249166d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

raffle.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,28 @@ def INPUT_TYPES(s):
3939
"taglists_must_include": ("STRING", {
4040
"multiline": True,
4141
"default": "",
42-
"tooltip": "Only selects taglists that contain ALL of these tags. WARNING: Each tag added here severely reduces the available pool of taglists. Check the 'Debug info' output to see how many taglists remain available."
42+
"tooltip": "<taglists_must_include> Only selects taglists that contain ALL of these tags. WARNING: Each tag added here severely reduces the available pool of taglists. Check the 'Debug info' output to see how many taglists remain available."
4343
}),
4444
"negative_prompt": ("STRING", {
4545
"multiline": True,
4646
"forceInput": True,
4747
"default": "",
48-
"tooltip": "Removes specific tags from the final output without affecting taglist selection. Tags listed here will be filtered out after a taglist is chosen, making this safer to use than 'exclude_taglists_containing'."
48+
"tooltip": "<negative_prompt> Removes specific tags from the final output without affecting taglist selection. Tags listed here will be filtered out after a taglist is chosen, making this safer to use than 'exclude_taglists_containing'."
4949
}),
5050
"filter_out_tags": ("STRING", {
5151
"multiline": True,
5252
"default": DEFAULT_FILTER_OUT_TAGS,
53-
"tooltip": "Additional tags to filter out from the final output. Use this to exclude more tags without needing to modify your main negative prompt."
53+
"tooltip": "<filter_out_tags> Additional tags to filter out from the final output. Use this to exclude more tags without needing to modify your main negative prompt."
5454
}),
5555
"exclude_taglists_containing": ("STRING", {
5656
"multiline": True,
5757
"default": DEFAULT_EXCLUDE_TAGLISTS,
58-
"tooltip": "If ANY of these tags appear in the taglist, the entire taglist is removed from the pool of available taglists. Use with caution as each tag listed here can significantly reduce options. For removing individual tags without reducing the pool, use 'filter_out_tags' instead."
58+
"tooltip": "<exclude_taglists_containing> If ANY of these tags appear in the taglist, the entire taglist is removed from the pool of available taglists. Use with caution as each tag listed here can significantly reduce options. For removing individual tags without reducing the pool, use 'filter_out_tags' instead."
5959
}),
6060
"exclude_tag_categories": ("STRING", {
6161
"multiline": True,
6262
"default": DEFAULT_EXCLUDE_CATEGORIES,
63-
"tooltip": "Exclude entire categories of tags from the final output. Each category contains related tags (e.g., 'poses' contains all pose-related tags). View the complete category list and their tags in the 'Debug info' output. Separate multiple categories with commas."
63+
"tooltip": "<exclude_tag_categories> Exclude entire categories of tags from the final output. Each category contains related tags (e.g., 'poses' contains all pose-related tags). View the complete category list and their tags in the 'Debug info' output. Separate multiple categories with commas."
6464
})
6565
},
6666
}
@@ -320,7 +320,7 @@ def process_tags(self, exclude_taglists_containing, taglists_must_include, seed,
320320
filter_out_tags_set = set(self.normalize_tags(filter_out_tags))
321321
filtered_tags = [tag for tag in filtered_tags if tag not in filter_out_tags_set]
322322

323-
debug_info = f"Pool of Taglists size: {len(all_valid_taglists)}\n\n{categories_debug}"
323+
debug_info = f"Taglist pool size: {len(all_valid_taglists)}\n\n{categories_debug}"
324324
return_values = (
325325
', '.join(filtered_tags),
326326
unfiltered_taglist,

0 commit comments

Comments
 (0)