fix program breaking on empty prompt
This commit is contained in:
parent
2f2d356e4c
commit
4127f4aff8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue