placed fill height as the first few params in ChatInterface
Browse files
app.py
CHANGED
@@ -69,9 +69,9 @@ with gr.Blocks(fill_height=True) as demo:
|
|
69 |
gr.ChatInterface(
|
70 |
fn=krypton,
|
71 |
chatbot=chatbot,
|
|
|
72 |
multimodal=True,
|
73 |
textbox=chat_input,
|
74 |
-
fill_height=True
|
75 |
)
|
76 |
|
77 |
if __name__ == "__main__":
|
|
|
69 |
gr.ChatInterface(
|
70 |
fn=krypton,
|
71 |
chatbot=chatbot,
|
72 |
+
fill_height=True,
|
73 |
multimodal=True,
|
74 |
textbox=chat_input,
|
|
|
75 |
)
|
76 |
|
77 |
if __name__ == "__main__":
|