rvc_infer / app.py
Blane187's picture
Update app.py
e67f619 verified
raw
history blame
1.12 kB
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 dir_name
CSS = """
"""
with gr.Blocks(theme="Hev832/Applio", fill_width=True, css=CSS) as demo:
with gr.Tabs():
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")
download_button = gr.Button("Download Model")
download_button.click(download_model, inputs=[url_input, dir_name_input], outputs=url_input)
with gr.Tab(" Credits"):
gr.Markdown(
"""
this project made by [Blane187](https://huggingface.co/Blane187) with Improvements by [John6666](https://huggingfce.co/John6666)
""")
demo.launch(debug=True,show_api=False)