Update app.py
Browse files
app.py
CHANGED
|
@@ -39,7 +39,7 @@ def generate_response(text, minimum_length, p, temperature):
|
|
| 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)
|
|
|
|
| 39 |
css = """
|
| 40 |
.rtlClass {direction:"rtl" !important}
|
| 41 |
"""
|
| 42 |
+
with gr.Blocks(css=css) as demo:
|
| 43 |
|
| 44 |
gr.Markdown("Empathetic Response Generation in Arabic")
|
| 45 |
chatbot = gr.Chatbot(style={'direction': 'rtl'}).style(height=400)
|