abidlabs HF Staff commited on
Commit
6682937
·
verified ·
1 Parent(s): 65748e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,9 +1,9 @@
1
  import gradio as gr
2
 
3
- with gr.Blocks() as demo:
4
  with gr.Sidebar():
5
  gr.Textbox()
6
  gr.Textbox()
7
- gr.ChatInterface(lambda x,y,z:x, additional_inputs=["textbox"])
8
 
9
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ with gr.Blocks(fill_height=True) as demo:
4
  with gr.Sidebar():
5
  gr.Textbox()
6
  gr.Textbox()
7
+ gr.ChatInterface(lambda x,y,z:x, additional_inputs=["textbox"], fill_height=True)
8
 
9
  demo.launch()