nicholasKluge commited on
Commit
2970a90
·
1 Parent(s): 32b8908

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -14,10 +14,10 @@ with gr.Blocks(theme='freddyaboulton/dracula_revamped') as demo:
14
 
15
  with gr.Row(scale=1, equal_height=True):
16
 
17
- with gr.Column(scale=7):
18
- chatbot = gr.Chatbot(label="Aira").style(height=500)
19
 
20
- with gr.Column(scale=3):
21
 
22
  with gr.Tab(label="Parameters ⚙️"):
23
  top_k = gr.Slider( minimum=10, maximum=100, value=50, step=5, interactive=True, label="Top-k",)
 
14
 
15
  with gr.Row(scale=1, equal_height=True):
16
 
17
+ with gr.Column(scale=5):
18
+ chatbot = gr.Chatbot(label="Aira").style(height=300)
19
 
20
+ with gr.Column(scale=2):
21
 
22
  with gr.Tab(label="Parameters ⚙️"):
23
  top_k = gr.Slider( minimum=10, maximum=100, value=50, step=5, interactive=True, label="Top-k",)