vericudebuget commited on
Commit
d7cc9aa
·
verified ·
1 Parent(s): 11e36e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -5
app.py CHANGED
@@ -45,17 +45,41 @@ 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
- app = gr.Blocks(theme=gr.themes.Soft())
49
- with app:
50
- chatbot = gr.Chatbot()
51
- text_input = gr.Textbox(label="Your message")
52
- submit_btn = gr.Button("Submit")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  def process_message(message, history):
55
  response = generate(message, history, additional_inputs[0].value)
56
  history.extend(response)
57
  return history, ""
58
 
 
59
  submit_btn.click(process_message, inputs=[text_input, chatbot], outputs=[chatbot, text_input])
60
 
61
  app.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
+ with gr.Blocks(theme=gr.themes.Soft(), css="""
49
+ .gradio-container {
50
+ width: 100%;
51
+ height: 100%;
52
+ }
53
+ .gr-button, .gr-text-input, .gr-chatbot {
54
+ border-radius: 15px;
55
+ }
56
+ .gr-button {
57
+ width: 48px;
58
+ height: 48px;
59
+ background-color: #673ab7;
60
+ color: #fff;
61
+ font-size: 24px;
62
+ display: flex;
63
+ justify-content: center;
64
+ align-items: center;
65
+ }
66
+ """) as app:
67
+ with gr.Row().style(equal_height=True):
68
+ text_input = gr.Textbox(label="Your message", placeholder="Type your message...", multiline=False, lines=1, max_lines=1, css_classes="flex-grow")
69
+ submit_btn = gr.Button(
70
+ "send",
71
+ variant="primary",
72
+ css_classes="material-symbols-outlined rounded-btn"
73
+ ).style(square=True)
74
+
75
+ chatbot = gr.Chatbot().style(height="calc(100vh - 100px)")
76
 
77
  def process_message(message, history):
78
  response = generate(message, history, additional_inputs[0].value)
79
  history.extend(response)
80
  return history, ""
81
 
82
+ text_input.submit(process_message, inputs=[text_input, chatbot], outputs=[chatbot, text_input])
83
  submit_btn.click(process_message, inputs=[text_input, chatbot], outputs=[chatbot, text_input])
84
 
85
  app.launch(show_api=False)