fix program breaking on empty prompt
This commit is contained in:
parent
2f2d356e4c
commit
4127f4aff8
1 changed files with 3 additions and 0 deletions
|
@ -212,4 +212,7 @@ def parse_prompt_attention(text):
|
||||||
for pos in square_brackets:
|
for pos in square_brackets:
|
||||||
multiply_range(pos, square_bracket_multiplier)
|
multiply_range(pos, square_bracket_multiplier)
|
||||||
|
|
||||||
|
if len(res) == 0:
|
||||||
|
res = [["", 1.0]]
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
Loading…
Reference in a new issue