Fix a bug in cai mode chat

This commit is contained in:
oobabooga 2023-01-15 19:41:25 -03:00
parent e6691bd920
commit bb1a172da0

View file

@ -222,6 +222,10 @@ elif args.chat or args.cai_chat:
question = context+'\n\n'
for i in range(len(history)):
if args.cai_chat:
question += f"{name1}: {history[i][0].strip()}\n"
question += f"{name2}: {history[i][1].strip()}\n"
else:
question += f"{name1}: {history[i][0][3:-5].strip()}\n"
question += f"{name2}: {history[i][1][3:-5].strip()}\n"
question += f"{name1}: {text}\n"
@ -294,8 +298,6 @@ elif args.chat or args.cai_chat:
with gr.Row():
check = gr.Checkbox(value=settings['stop_at_newline'], label='Stop generating at new line character?')
if args.cai_chat:
btn.click(cai_chatbot_wrapper, [textbox, length_slider, preset_menu, model_menu, name1, name2, context, check], display1, show_progress=True, api_name="textgen")
textbox.submit(cai_chatbot_wrapper, [textbox, length_slider, preset_menu, model_menu, name1, name2, context, check], display1, show_progress=True)