Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -17,11 +17,7 @@ with gr.Blocks(theme="Hev832/Applio", fill_width=True, css=CSS) as demo:
|
|
17 |
url_input = gr.Textbox(label="Model URL", placeholder="Enter the URL of the model")
|
18 |
dir_name_input = gr.Textbox(label="Directory Name", placeholder="Enter the directory name")
|
19 |
|
20 |
-
|
21 |
-
gr.Markdown(
|
22 |
-
"""
|
23 |
-
this project made by [Blane187](https://huggingface.co/Blane187) with Improvements by [John6666](https://huggingfce.co/John6666)
|
24 |
-
""")
|
25 |
|
26 |
|
27 |
|
@@ -30,5 +26,13 @@ with gr.Blocks(theme="Hev832/Applio", fill_width=True, css=CSS) as demo:
|
|
30 |
download_button = gr.Button("Download Model")
|
31 |
|
32 |
download_button.click(download_model, inputs=[url_input, dir_name_input], outputs=output)
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
demo.launch()
|
|
|
17 |
url_input = gr.Textbox(label="Model URL", placeholder="Enter the URL of the model")
|
18 |
dir_name_input = gr.Textbox(label="Directory Name", placeholder="Enter the directory name")
|
19 |
|
20 |
+
|
|
|
|
|
|
|
|
|
21 |
|
22 |
|
23 |
|
|
|
26 |
download_button = gr.Button("Download Model")
|
27 |
|
28 |
download_button.click(download_model, inputs=[url_input, dir_name_input], outputs=output)
|
29 |
+
|
30 |
+
with gr.Tab(" Credits"):
|
31 |
+
gr.Markdown(
|
32 |
+
"""
|
33 |
+
this project made by [Blane187](https://huggingface.co/Blane187) with Improvements by [John6666](https://huggingfce.co/John6666)
|
34 |
+
""")
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
demo.launch()
|