Spaces:
Runtime error
Runtime error
Commit
·
e0e5a49
1
Parent(s):
c13fcec
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,8 @@ st.subheader("Some examples: ")
|
|
23 |
example_1 = st.button("I am write on AI")
|
24 |
example_2 = st.button("This sentence has, bads grammar mistake!")
|
25 |
|
26 |
-
|
|
|
27 |
|
28 |
button = st.button('Detect grammar mistakes:')
|
29 |
|
|
|
23 |
example_1 = st.button("I am write on AI")
|
24 |
example_2 = st.button("This sentence has, bads grammar mistake!")
|
25 |
|
26 |
+
# height=100, max_chars=1000
|
27 |
+
textbox = st.text_input('Write your text in this box:', '',max_chars = 1000 )
|
28 |
|
29 |
button = st.button('Detect grammar mistakes:')
|
30 |
|