Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -114,10 +114,10 @@ tmp = '''with gr.Blocks(fill_height=True, ) as demo:
|
|
114 |
chatbot=chatbot,
|
115 |
)'''
|
116 |
|
117 |
-
with gr.Blocks() as demo:
|
118 |
gr.HTML(f'<h1><center>{title}</center></h1>')
|
119 |
gr.HTML(f'<center>{description}</center>')
|
120 |
-
with gr.Row():
|
121 |
with gr.Column():
|
122 |
gr.ChatInterface(
|
123 |
fn=bot_streaming,
|
|
|
114 |
chatbot=chatbot,
|
115 |
)'''
|
116 |
|
117 |
+
with gr.Blocks(fill_height=True) as demo:
|
118 |
gr.HTML(f'<h1><center>{title}</center></h1>')
|
119 |
gr.HTML(f'<center>{description}</center>')
|
120 |
+
with gr.Row(equal_height=True):
|
121 |
with gr.Column():
|
122 |
gr.ChatInterface(
|
123 |
fn=bot_streaming,
|