Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -221,15 +221,6 @@ def setTextVisibility(cbg, model_name_input):
|
|
221 |
# return update_show + update_hide
|
222 |
|
223 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
224 |
-
|
225 |
-
gr.HTML("""
|
226 |
-
<div style="text-align: center; max-width: 1240px; margin: 0 auto;">
|
227 |
-
<h1 style="font-weight: 200; font-size: 20px; margin-bottom:8px; margin-top:0px;">
|
228 |
-
AuditLLM
|
229 |
-
</h1>
|
230 |
-
<hr style="margin-bottom:5px; margin-top:5px;">
|
231 |
-
</div>
|
232 |
-
""")
|
233 |
|
234 |
with gr.Tab("Live Mode"):
|
235 |
|
@@ -288,7 +279,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
288 |
diversity_slider = gr.Slider(1, 100, value=25, label="Diversity", info="Choose between 0 and 100", interactive=True)
|
289 |
|
290 |
|
291 |
-
submit_button = gr.Button("Submit")
|
292 |
output_textbox = gr.Textbox(label="Output")
|
293 |
download_button = gr.File(label="Download Processed File")
|
294 |
|
|
|
221 |
# return update_show + update_hide
|
222 |
|
223 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
|
225 |
with gr.Tab("Live Mode"):
|
226 |
|
|
|
279 |
diversity_slider = gr.Slider(1, 100, value=25, label="Diversity", info="Choose between 0 and 100", interactive=True)
|
280 |
|
281 |
|
282 |
+
submit_button = gr.Button("Submit", variant="primary", min_width=200)
|
283 |
output_textbox = gr.Textbox(label="Output")
|
284 |
download_button = gr.File(label="Download Processed File")
|
285 |
|