Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,6 +13,18 @@ else:
|
|
| 13 |
|
| 14 |
# Streamlit App UI Setup
|
| 15 |
st.title("Text-to-Speech with Kokoro")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
st.sidebar.header("Configuration & Instructions")
|
| 17 |
|
| 18 |
# Sidebar Instructions
|
|
|
|
| 13 |
|
| 14 |
# Streamlit App UI Setup
|
| 15 |
st.title("Text-to-Speech with Kokoro")
|
| 16 |
+
# Expander section to display information in multiple languages
|
| 17 |
+
with st.expander("Sample Prompt!"):
|
| 18 |
+
st.write("""
|
| 19 |
+
My name is Shukdev. (In English)
|
| 20 |
+
Mi nombre es Shukdev. (In Spanish)
|
| 21 |
+
Je m'appelle Choukdev. (In French)
|
| 22 |
+
मेरा नाम शुकदेव है. (In Hindi)
|
| 23 |
+
Il mio nome è Shukdev. (In Italy)
|
| 24 |
+
Meu nome é Sukhdev. (In Portuguese, Brazil)
|
| 25 |
+
我叫苏赫德夫。(In Chinese)
|
| 26 |
+
私の名前はスクデフです。(In Japanese)
|
| 27 |
+
""")
|
| 28 |
st.sidebar.header("Configuration & Instructions")
|
| 29 |
|
| 30 |
# Sidebar Instructions
|