fix program breaking on empty prompt

This commit is contained in:
AUTOMATIC 2022-09-29 11:39:55 +03:00
parent 2f2d356e4c
commit 4127f4aff8

View File

@ -212,4 +212,7 @@ def parse_prompt_attention(text):
for pos in square_brackets:
multiply_range(pos, square_bracket_multiplier)
if len(res) == 0:
res = [["", 1.0]]
return res