Spaces:
Running
on
Zero
Running
on
Zero
tori29umai
commited on
Commit
•
4053109
1
Parent(s):
c6a6db8
Update utils/prompt_utils.py
Browse files- utils/prompt_utils.py +1 -2
utils/prompt_utils.py
CHANGED
@@ -23,6 +23,5 @@ def remove_color(base_prompt):
|
|
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 |
-
# 最終的なプロンプトを生成
|
28 |
return ", ".join(filtered_tags)
|
|
|
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 all(execute_tag.lower() not in tag.lower() for execute_tag in execute_tags)]
|
|
|
27 |
return ", ".join(filtered_tags)
|