Spaces:
Sleeping
Sleeping
Update utils/prompt_utils.py
Browse files- utils/prompt_utils.py +2 -2
utils/prompt_utils.py
CHANGED
|
@@ -22,6 +22,6 @@ def remove_color(base_prompt):
|
|
| 22 |
|
| 23 |
def execute_prompt(execute_tags, base_prompt):
|
| 24 |
prompt_list = base_prompt.split(", ")
|
| 25 |
-
# execute_tags
|
| 26 |
-
filtered_tags = [tag for tag in prompt_list if
|
| 27 |
return ", ".join(filtered_tags)
|
|
|
|
| 22 |
|
| 23 |
def execute_prompt(execute_tags, base_prompt):
|
| 24 |
prompt_list = base_prompt.split(", ")
|
| 25 |
+
# execute_tagsに含まれる単語が1つでも含まれていたら除去
|
| 26 |
+
filtered_tags = [tag for tag in prompt_list if not any(execute_tag in tag for execute_tag in execute_tags)]
|
| 27 |
return ", ".join(filtered_tags)
|