Prakash N commited on
Commit
2ad87b7
1 Parent(s): 9ee63d4

added output for col2

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -32,6 +32,8 @@ with col1:
32
  x = st.text_area('Paste the full article text to summarize here...')
33
  st.button("Summarize this")
34
 
35
- col2.write("This is col2")
36
-
37
-
 
 
 
32
  x = st.text_area('Paste the full article text to summarize here...')
33
  st.button("Summarize this")
34
 
35
+ with col2:
36
+ col2.header("Step 2:")
37
+ summary = "Here is the completed summary for you to edit"
38
+ y = st.text_area(summary)
39
+ st.button("Submit edits")