mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-26 09:40:20 +01:00
Reorganize chat UI elements
This commit is contained in:
parent
3687962e6c
commit
f4674d34a9
14
server.py
14
server.py
@ -580,11 +580,15 @@ if args.chat or args.cai_chat:
|
||||
with gr.Row():
|
||||
check = gr.Checkbox(value=settings[f'stop_at_newline{suffix}'], label='Stop generating at new line character?')
|
||||
with gr.Row():
|
||||
with gr.Tab('Upload chat history'):
|
||||
upload = gr.File(type='binary')
|
||||
with gr.Tab('Download chat history'):
|
||||
download = gr.File()
|
||||
save_btn = gr.Button(value="Click me")
|
||||
with gr.Tab('Chat history'):
|
||||
with gr.Row():
|
||||
with gr.Column():
|
||||
gr.Markdown('Upload')
|
||||
upload = gr.File(type='binary')
|
||||
with gr.Column():
|
||||
gr.Markdown('Download')
|
||||
download = gr.File()
|
||||
save_btn = gr.Button(value="Click me")
|
||||
with gr.Tab('Upload character'):
|
||||
with gr.Row():
|
||||
with gr.Column():
|
||||
|
Loading…
Reference in New Issue
Block a user