mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-23 00:18:20 +01:00
Keep the character's greeting/example dialogue when "clear history" is clicked
This commit is contained in:
parent
ebed1dea56
commit
ec69c190ba
21
server.py
21
server.py
@ -357,13 +357,22 @@ if args.chat or args.cai_chat:
|
|||||||
else:
|
else:
|
||||||
return _history, last[0]
|
return _history, last[0]
|
||||||
|
|
||||||
def clear():
|
|
||||||
global history
|
|
||||||
history = []
|
|
||||||
|
|
||||||
def clear_html():
|
def clear_html():
|
||||||
return generate_chat_html([], "", "", character)
|
return generate_chat_html([], "", "", character)
|
||||||
|
|
||||||
|
def clear_chat_log(_character, name1, name2):
|
||||||
|
global history
|
||||||
|
if _character != 'None':
|
||||||
|
load_character(_character, name1, name2)
|
||||||
|
else:
|
||||||
|
history = []
|
||||||
|
|
||||||
|
_history = remove_example_dialogue_from_history(history)
|
||||||
|
if args.cai_chat:
|
||||||
|
return generate_chat_html(_history, name1, name2, character)
|
||||||
|
else:
|
||||||
|
return _history
|
||||||
|
|
||||||
def redraw_html(name1, name2):
|
def redraw_html(name1, name2):
|
||||||
global history
|
global history
|
||||||
_history = remove_example_dialogue_from_history(history)
|
_history = remove_example_dialogue_from_history(history)
|
||||||
@ -493,14 +502,12 @@ if args.chat or args.cai_chat:
|
|||||||
if args.cai_chat:
|
if args.cai_chat:
|
||||||
gen_event = btn.click(cai_chatbot_wrapper, input_params, display1, show_progress=args.no_stream, api_name="textgen")
|
gen_event = btn.click(cai_chatbot_wrapper, input_params, display1, show_progress=args.no_stream, api_name="textgen")
|
||||||
gen_event2 = textbox.submit(cai_chatbot_wrapper, input_params, display1, show_progress=args.no_stream)
|
gen_event2 = textbox.submit(cai_chatbot_wrapper, input_params, display1, show_progress=args.no_stream)
|
||||||
btn_clear.click(clear_html, [], display1, show_progress=False)
|
|
||||||
else:
|
else:
|
||||||
gen_event = btn.click(chatbot_wrapper, input_params, display1, show_progress=args.no_stream, api_name="textgen")
|
gen_event = btn.click(chatbot_wrapper, input_params, display1, show_progress=args.no_stream, api_name="textgen")
|
||||||
gen_event2 = textbox.submit(chatbot_wrapper, input_params, display1, show_progress=args.no_stream)
|
gen_event2 = textbox.submit(chatbot_wrapper, input_params, display1, show_progress=args.no_stream)
|
||||||
btn_clear.click(lambda x: "", display1, display1, show_progress=False)
|
|
||||||
gen_event3 = btn_regenerate.click(regenerate_wrapper, input_params, display1, show_progress=args.no_stream)
|
gen_event3 = btn_regenerate.click(regenerate_wrapper, input_params, display1, show_progress=args.no_stream)
|
||||||
|
|
||||||
btn_clear.click(clear)
|
btn_clear.click(clear_chat_log, [character_menu, name1, name2], display1)
|
||||||
btn_remove_last.click(remove_last_message, [name1, name2], [display1, textbox], show_progress=False)
|
btn_remove_last.click(remove_last_message, [name1, name2], [display1, textbox], show_progress=False)
|
||||||
btn.click(lambda x: "", textbox, textbox, show_progress=False)
|
btn.click(lambda x: "", textbox, textbox, show_progress=False)
|
||||||
btn_regenerate.click(lambda x: "", textbox, textbox, show_progress=False)
|
btn_regenerate.click(lambda x: "", textbox, textbox, show_progress=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user