Spaces:
Runtime error
Runtime error
File size: 871 Bytes
3b45108 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import gradio as gr
from rvc_infer import download_online_model
def download_model(url, dir_name):
output_models = download_online_model(url, dir_name)
return output_models
CSS = """
"""
with gr.Blocks(theme="Hev832/Applio", fill_width=True, css=CSS) as demo:
with gr.Tab("inferenece"):
gr.Markdown("in progress")
with gr.Tab("Download model"):
gr.Markdown("## Download Model for infernece")
url_input = gr.Textbox(label="Model URL", placeholder="Enter the URL of the model")
dir_name_input = gr.Textbox(label="Directory Name", placeholder="Enter the directory name")
output = gr.Textbox(label="Output Models")
download_button = gr.Button("Download Model")
download_button.click(download_model, inputs=[url_input, dir_name_input], outputs=output)
demo.launch()
|