mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Do not use empty user messages in chat mode
This allows the bot to send messages by clicking on Generate with empty inputs.
This commit is contained in:
commit
507db0929d
@ -33,12 +33,14 @@ def generate_chat_prompt(user_input, max_new_tokens, name1, name2, context, chat
|
|||||||
i = len(shared.history['internal'])-1
|
i = len(shared.history['internal'])-1
|
||||||
while i >= 0 and len(encode(''.join(rows), max_new_tokens)[0]) < max_length:
|
while i >= 0 and len(encode(''.join(rows), max_new_tokens)[0]) < max_length:
|
||||||
rows.insert(1, f"{name2}: {shared.history['internal'][i][1].strip()}\n")
|
rows.insert(1, f"{name2}: {shared.history['internal'][i][1].strip()}\n")
|
||||||
if not (shared.history['internal'][i][0] == '<|BEGIN-VISIBLE-CHAT|>'):
|
prev_user_input = shared.history['internal'][i][0]
|
||||||
rows.insert(1, f"{name1}: {shared.history['internal'][i][0].strip()}\n")
|
if len(prev_user_input) > 0 and prev_user_input != '<|BEGIN-VISIBLE-CHAT|>':
|
||||||
|
rows.insert(1, f"{name1}: {prev_user_input.strip()}\n")
|
||||||
i -= 1
|
i -= 1
|
||||||
|
|
||||||
if not impersonate:
|
if not impersonate:
|
||||||
rows.append(f"{name1}: {user_input}\n")
|
if len(user_input) > 0:
|
||||||
|
rows.append(f"{name1}: {user_input}\n")
|
||||||
rows.append(apply_extensions(f"{name2}:", "bot_prefix"))
|
rows.append(apply_extensions(f"{name2}:", "bot_prefix"))
|
||||||
limit = 3
|
limit = 3
|
||||||
else:
|
else:
|
||||||
|
@ -142,22 +142,24 @@ def generate_chat_html(history, name1, name2, character):
|
|||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not (i == len(history)-1 and len(row[0]) == 0):
|
if len(row[0]) == 0: # don't display empty user messages
|
||||||
output += f"""
|
continue
|
||||||
<div class="message">
|
|
||||||
<div class="circle-you">
|
output += f"""
|
||||||
{img_me}
|
<div class="message">
|
||||||
</div>
|
<div class="circle-you">
|
||||||
<div class="text">
|
{img_me}
|
||||||
<div class="username">
|
</div>
|
||||||
{name1}
|
<div class="text">
|
||||||
</div>
|
<div class="username">
|
||||||
<div class="message-body">
|
{name1}
|
||||||
{row[0]}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
"""
|
<div class="message-body">
|
||||||
|
{row[0]}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
"""
|
||||||
|
|
||||||
output += "</div>"
|
output += "</div>"
|
||||||
return output
|
return output
|
||||||
|
Loading…
Reference in New Issue
Block a user