Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|