Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,11 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
2 |
gr.Markdown("<h1 style='font-size:40px;'>9-Volt Fan's RVC Voice Models</h1>")
|
3 |
gr.Markdown("<h4 style='font-size:25px;'>I make RVC voice models!</h4>")
|
4 |
gr.Markdown("<p>To request a voice model, ask in the discussions, and I'll be able to make it just for you.</p>")
|
5 |
gr.Markdown('<a href="https://huggingface.co/collections/ark142/rvc-voice-models-681506cb89322fa7cb2e45fa" target="_blank">Click here to visit my RVC voice models!</a>')
|
6 |
-
|
|
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
|
3 |
+
def text():
|
4 |
+
return
|
5 |
gr.Markdown("<h1 style='font-size:40px;'>9-Volt Fan's RVC Voice Models</h1>")
|
6 |
gr.Markdown("<h4 style='font-size:25px;'>I make RVC voice models!</h4>")
|
7 |
gr.Markdown("<p>To request a voice model, ask in the discussions, and I'll be able to make it just for you.</p>")
|
8 |
gr.Markdown('<a href="https://huggingface.co/collections/ark142/rvc-voice-models-681506cb89322fa7cb2e45fa" target="_blank">Click here to visit my RVC voice models!</a>')
|
9 |
+
|
10 |
+
demo = gr.Interface(fn=text, inputs="text", outputs="text")
|
11 |
demo.launch()
|