We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f839575 commit 9bc3332Copy full SHA for 9bc3332
scripts/prompts_from_file.py
@@ -34,7 +34,7 @@ def process_float_tag(tag):
34
35
def process_boolean_tag(tag):
36
"""true|false"""
37
- return True if (tag == "true") else False
+ return True if (tag.lower() == "true") else False
38
39
40
prompt_tags = {
0 commit comments