mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-12-25 13:58:56 +01:00
Fix replace last reply in --chat mode (for #69)
This commit is contained in:
parent
cf89ef1c74
commit
2ed0386d87
@ -537,7 +537,10 @@ def send_last_reply_to_input():
|
|||||||
|
|
||||||
def replace_last_reply(text, name1, name2):
|
def replace_last_reply(text, name1, name2):
|
||||||
if len(history['visible']) > 0:
|
if len(history['visible']) > 0:
|
||||||
|
if args.cai_chat:
|
||||||
history['visible'][-1][1] = text
|
history['visible'][-1][1] = text
|
||||||
|
else:
|
||||||
|
history['visible'][-1] = (history['visible'][-1][0], text)
|
||||||
history['internal'][-1][1] = apply_extensions(text, "input")
|
history['internal'][-1][1] = apply_extensions(text, "input")
|
||||||
|
|
||||||
if args.cai_chat:
|
if args.cai_chat:
|
||||||
|
Loading…
Reference in New Issue
Block a user