vericudebuget commited on
Commit
6dbaefe
·
verified ·
1 Parent(s): bf9797c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -15
app.py CHANGED
@@ -45,18 +45,15 @@ additional_inputs = [
45
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens")
46
  ]
47
 
48
- with gr.Blocks() as demo:
49
- chatbot = gr.Chatbot(show_label=True, show_share_button=False, show_copy_button=True, likeable=True, layout="panel")
50
- with gr.Row():
51
- with gr.Column(scale=3):
52
- user_input = gr.Textbox(label="Your message", placeholder="Type your message here...")
53
- with gr.Column(scale=1, height=40):
54
- submit_button = gr.Button("", shape="square")
55
-
56
- submit_button.click(
57
- fn=generate,
58
- inputs=[user_input, chatbot, gr.Textbox(label="System Prompt", max_lines=1, interactive=True)],
59
- outputs=chatbot
60
- )
61
-
62
- demo.launch(show_api=False)
 
45
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens")
46
  ]
47
 
48
+ gr.ChatInterface(
49
+ fn=generate,
50
+ chatbot=gr.Chatbot(show_label=True, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
51
+ additional_inputs=additional_inputs,
52
+ title="ConvoLite",
53
+ submit_btn="➢",
54
+ retry_btn="Retry",
55
+ undo_btn="↩ Undo",
56
+ clear_btn="Clear (New chat)",
57
+ stop_btn="Stop ▢",
58
+ concurrency_limit=20,
59
+ ).launch(show_api=False)