Update app.py
Browse files
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,
|
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')
|