Spaces:
Running
Running
Commit
·
bca38c6
1
Parent(s):
669226b
Added title when running locally
Browse files
README.md
CHANGED
@@ -9,7 +9,7 @@ app_file: app.py
|
|
9 |
short-description: A sample of the Piper Model with Argentinian female voice
|
10 |
pinned: false
|
11 |
license: mit
|
12 |
-
disable_embedding:
|
13 |
language:
|
14 |
- es
|
15 |
tags:
|
|
|
9 |
short-description: A sample of the Piper Model with Argentinian female voice
|
10 |
pinned: false
|
11 |
license: mit
|
12 |
+
disable_embedding: false
|
13 |
language:
|
14 |
- es
|
15 |
tags:
|
app.py
CHANGED
@@ -54,7 +54,7 @@ on [piper's shoulders](https://huggingface.co/rhasspy/piper-voices) by [rhasspy]
|
|
54 |
"""
|
55 |
|
56 |
# Using Gradio Blocks
|
57 |
-
with gr.Blocks(theme=gr.themes.Base()) as demo:
|
58 |
gr.Markdown(BANNER_TEXT)
|
59 |
input_text = gr.Textbox(label=" ", placeholder="Introduce el texto a leer aquí")
|
60 |
with gr.Row():
|
|
|
54 |
"""
|
55 |
|
56 |
# Using Gradio Blocks
|
57 |
+
with gr.Blocks(theme=gr.themes.Base(), title="Piper Argentinian voice test") as demo:
|
58 |
gr.Markdown(BANNER_TEXT)
|
59 |
input_text = gr.Textbox(label=" ", placeholder="Introduce el texto a leer aquí")
|
60 |
with gr.Row():
|