Spaces:
Running
on
A100
Running
on
A100
Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,21 @@ def multi_turn_chat(user_input, audio_file, history, current_audio):
|
|
84 |
# ---------------------------------
|
85 |
# INTERFACE
|
86 |
# ---------------------------------
|
87 |
-
with gr.Blocks(css="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
gr.Markdown("""
|
89 |
|
90 |
<div align="center">
|
|
|
84 |
# ---------------------------------
|
85 |
# INTERFACE
|
86 |
# ---------------------------------
|
87 |
+
with gr.Blocks(css="""
|
88 |
+
.gradio-container {
|
89 |
+
max-width: 100% !important;
|
90 |
+
width: 100% !important;
|
91 |
+
margin: 0 !important;
|
92 |
+
padding: 0 !important;
|
93 |
+
}
|
94 |
+
#component-0, .gr-block.gr-box {
|
95 |
+
width: 100% !important;
|
96 |
+
}
|
97 |
+
.gr-block.gr-box, .gr-column, .gr-row {
|
98 |
+
padding: 0 !important;
|
99 |
+
margin: 0 !important;
|
100 |
+
}
|
101 |
+
""") as demo:
|
102 |
gr.Markdown("""
|
103 |
|
104 |
<div align="center">
|