Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,5 +8,5 @@ text = st.text_area('enter some text and I will convert it into emoji: ')
|
|
8 |
if text:
|
9 |
out = pipe(text)
|
10 |
emoji_text = out[0]['generated_text']
|
11 |
-
st.write(f"
|
12 |
|
|
|
8 |
if text:
|
9 |
out = pipe(text)
|
10 |
emoji_text = out[0]['generated_text']
|
11 |
+
st.write(f"converted to emojis: {emoji_text}")
|
12 |
|