Spaces:
Runtime error
Runtime error
Commit
·
d530085
1
Parent(s):
acd8864
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,11 +9,12 @@ text_ar = st.text_area("Enter text:")
|
|
| 9 |
|
| 10 |
if(st.button("Generate!")):
|
| 11 |
text_ar = text_ar.replace("\n"," ").split('.')
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
|
|
|
|
| 9 |
|
| 10 |
if(st.button("Generate!")):
|
| 11 |
text_ar = text_ar.replace("\n"," ").split('.')
|
| 12 |
+
for text in text_ar:
|
| 13 |
+
lis = creator(text)
|
| 14 |
+
for item in lis:
|
| 15 |
+
st.write(item)
|
| 16 |
+
|
| 17 |
+
|
| 18 |
|
| 19 |
|
| 20 |
|