You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: raffle.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -39,28 +39,28 @@ def INPUT_TYPES(s):
39
39
"taglists_must_include": ("STRING", {
40
40
"multiline": True,
41
41
"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."
43
43
}),
44
44
"negative_prompt": ("STRING", {
45
45
"multiline": True,
46
46
"forceInput": True,
47
47
"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'."
49
49
}),
50
50
"filter_out_tags": ("STRING", {
51
51
"multiline": True,
52
52
"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."
54
54
}),
55
55
"exclude_taglists_containing": ("STRING", {
56
56
"multiline": True,
57
57
"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."
59
59
}),
60
60
"exclude_tag_categories": ("STRING", {
61
61
"multiline": True,
62
62
"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."
0 commit comments