sarasad commited on
Commit
c5dba0a
·
1 Parent(s): a7777b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -36,12 +36,14 @@ def generate_response(text, minimum_length, p, temperature):
36
 
37
  # title = 'Empathetic Response Generation in Arabic'
38
  # description = 'This demo is for a BERT2BERT model trained for single-turn open-domain empathetic dialogue response generation in Modern Standard Arabic'
39
-
 
 
40
  with gr.Blocks() as demo:
41
 
42
  gr.Markdown("Empathetic Response Generation in Arabic")
43
  chatbot = gr.Chatbot(style={'direction': 'rtl'}).style(height=400)
44
- msg = gr.Textbox(placeholder="Send a message",show_label=False,rtl=True).style(container=False)
45
  with gr.Column():
46
  output_slider=gr.Slider(5, 20, step=1, label='Minimum Output Length')
47
  top_p_slider=gr.Slider(0.7, 1, step=0.1, label='Top-P')
 
36
 
37
  # title = 'Empathetic Response Generation in Arabic'
38
  # description = 'This demo is for a BERT2BERT model trained for single-turn open-domain empathetic dialogue response generation in Modern Standard Arabic'
39
+ css = """
40
+ .rtlClass {direction:"rtl" !important}
41
+ """
42
  with gr.Blocks() as demo:
43
 
44
  gr.Markdown("Empathetic Response Generation in Arabic")
45
  chatbot = gr.Chatbot(style={'direction': 'rtl'}).style(height=400)
46
+ msg = gr.Textbox(placeholder="Send a message",show_label=False,elem_classes="rtlClass")
47
  with gr.Column():
48
  output_slider=gr.Slider(5, 20, step=1, label='Minimum Output Length')
49
  top_p_slider=gr.Slider(0.7, 1, step=0.1, label='Top-P')