Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1330,9 +1330,10 @@ def show_vocal_components(value_name):
|
|
1330 |
|
1331 |
|
1332 |
def get_gui(theme):
|
1333 |
-
with gr.Blocks(theme=
|
1334 |
gr.Markdown(title)
|
1335 |
-
gr.
|
|
|
1336 |
|
1337 |
downloader_gui = downloader_conf()
|
1338 |
with gr.Row():
|
@@ -1475,8 +1476,8 @@ if __name__ == "__main__":
|
|
1475 |
|
1476 |
app.launch(
|
1477 |
max_threads=40,
|
1478 |
-
share=
|
1479 |
show_error=True,
|
1480 |
quiet=False,
|
1481 |
-
debug=
|
1482 |
)
|
|
|
1330 |
|
1331 |
|
1332 |
def get_gui(theme):
|
1333 |
+
with gr.Blocks(theme="hev832/Applio") as app:
|
1334 |
gr.Markdown(title)
|
1335 |
+
with gr.Accordion("read this", open=False):
|
1336 |
+
gr.Markdown(description)
|
1337 |
|
1338 |
downloader_gui = downloader_conf()
|
1339 |
with gr.Row():
|
|
|
1476 |
|
1477 |
app.launch(
|
1478 |
max_threads=40,
|
1479 |
+
share=True,
|
1480 |
show_error=True,
|
1481 |
quiet=False,
|
1482 |
+
debug=True,
|
1483 |
)
|