Spaces:
Sleeping
Sleeping
Add placeholder
Browse files
app.py
CHANGED
@@ -24,8 +24,14 @@ model = load_model()
|
|
24 |
tokenizer = load_tokenizer()
|
25 |
|
26 |
st.title('Mail fixer')
|
|
|
27 |
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
29 |
new_mail = st.text('')
|
30 |
|
31 |
if mail:
|
|
|
24 |
tokenizer = load_tokenizer()
|
25 |
|
26 |
st.title('Mail fixer')
|
27 |
+
placeholder = '''Hi Emma,
|
28 |
|
29 |
+
How did you like our art project? I thought it was pretty cool too! But one thing I noticed was that sometimes the letters were hard to see because they were a little bit too small. Let's try making them bigger or changing their shape so everyone can read them better.
|
30 |
+
|
31 |
+
Thanks for helping us work on the project! I have lots of other ideas for things we can do together. Can't wait to get started!
|
32 |
+
|
33 |
+
Love, James'''
|
34 |
+
mail = st.text_area('Enter your mail here', placeholder=placeholder, height=300)
|
35 |
new_mail = st.text('')
|
36 |
|
37 |
if mail:
|