Blane187 commited on
Commit
31ed23e
·
verified ·
1 Parent(s): fe54a29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -6
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
- with gr.Tab(" Credits"):
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()