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