mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-25 09:19:23 +01:00
Fix clear history
This commit is contained in:
parent
7a776ccf87
commit
f24b6e78a3
@ -216,11 +216,16 @@ def clear_html():
|
||||
|
||||
def clear_chat_log(name1, name2):
|
||||
if shared.character != 'None':
|
||||
found = False
|
||||
for i in range(len(shared.history['internal'])):
|
||||
if '<|BEGIN-VISIBLE-CHAT|>' in shared.history['internal'][i][0]:
|
||||
shared.history['visible'] = [['', apply_extensions(shared.history['internal'][i][1], "output")]]
|
||||
shared.history['internal'] = shared.history['internal'][:i+1]
|
||||
found = True
|
||||
break
|
||||
if not found:
|
||||
shared.history['visible'] = []
|
||||
shared.history['internal'] = []
|
||||
else:
|
||||
shared.history['internal'] = []
|
||||
shared.history['visible'] = []
|
||||
|
Loading…
Reference in New Issue
Block a user