Thorsten-Voice commited on
Commit
0fca135
·
verified ·
1 Parent(s): 849b4d6

Increased max input length from 250 to 1000

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ st.markdown("* Ein ⭐ ist gerne gesehen: https://github.com/thorstenMueller/Tho
17
  st.markdown("* **Danke für's Abonnieren 😊: https://www.youtube.com/@ThorstenMueller**")
18
  st.markdown("* Die Webseite des Projektes lautet: https://www.Thorsten-Voice.de")
19
 
20
- text = st.text_area("Zu sprechender Text",max_chars=250)
21
  model = st.radio("Welches Thorsten-Voice Modell möchtest Du testen?",
22
  ('Thorsten-VITS','Thorsten-DDC'))
23
 
 
17
  st.markdown("* **Danke für's Abonnieren 😊: https://www.youtube.com/@ThorstenMueller**")
18
  st.markdown("* Die Webseite des Projektes lautet: https://www.Thorsten-Voice.de")
19
 
20
+ text = st.text_area("Zu sprechender Text",max_chars=1000)
21
  model = st.radio("Welches Thorsten-Voice Modell möchtest Du testen?",
22
  ('Thorsten-VITS','Thorsten-DDC'))
23