Spaces:
Runtime error
Runtime error
Prakash N
commited on
Commit
·
fb4a63f
1
Parent(s):
4cbf692
added text area,and submit button
Browse files
app.py
CHANGED
@@ -22,15 +22,15 @@ st.markdown(""" #### LorSor helps you through a simple 3 stage process.
|
|
22 |
|
23 |
Kick back and think about what you're going to do with all the time that you've saved!
|
24 |
|
25 |
-
Send any feedback to [us]([email protected]) """)
|
26 |
|
27 |
|
28 |
col1, col2 = st.columns(2)
|
29 |
|
30 |
with col1:
|
31 |
-
col1.header("
|
32 |
-
x = st.
|
33 |
-
st.
|
34 |
|
35 |
col2.write("This is col2")
|
36 |
|
|
|
22 |
|
23 |
Kick back and think about what you're going to do with all the time that you've saved!
|
24 |
|
25 |
+
Send any feedback to [us](mailto:[email protected]) """)
|
26 |
|
27 |
|
28 |
col1, col2 = st.columns(2)
|
29 |
|
30 |
with col1:
|
31 |
+
col1.header("Copy and paste your article here")
|
32 |
+
x = st.text_area('Paste here...')
|
33 |
+
st.button("Summarize this")
|
34 |
|
35 |
col2.write("This is col2")
|
36 |
|