Correction placeholder

This commit is contained in:
François Pelletier 2023-09-14 17:14:47 -04:00
parent 00911bbea4
commit f2f4621899

View file

@ -20,7 +20,7 @@ def main():
with open("ressources/header.md", "r") as f:
st.markdown(f.read(), unsafe_allow_html=False)
text = st.text_area("Entre le texte à corriger", value="Écris ton texte ici", height=200)
text = st.text_area("Entre le texte à corriger", placeholder="Écris ton texte ici", height=200)
if st.button("Corriger"):
corrected_text = correct_text(text)
st.text_area("Texte corrigé:", value=corrected_text, height=200)