NBayer commited on
Commit
e8ec388
1 Parent(s): c141399

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -41,13 +41,6 @@ def summarize_text(payload):
41
 
42
  tab_general_topics, tab_your_paper = st.tabs(["Research topics", "Summarize your paper(s)"])
43
 
44
- with tab_general_topics:
45
- html("", height=10)
46
-
47
- st.header("See the status of a research topic through a summary of the most cited papers")
48
-
49
- st.selectbox("Select a research topic", ["Artificial Intelligence", "Sustainability", "Cooking"])
50
-
51
  with tab_your_paper:
52
  html("", height=10)
53
 
@@ -107,4 +100,12 @@ with tab_your_paper:
107
  st.write(tags)
108
 
109
  with st.expander("See your total text"):
110
- st.write(all_text_together)
 
 
 
 
 
 
 
 
 
41
 
42
  tab_general_topics, tab_your_paper = st.tabs(["Research topics", "Summarize your paper(s)"])
43
 
 
 
 
 
 
 
 
44
  with tab_your_paper:
45
  html("", height=10)
46
 
 
100
  st.write(tags)
101
 
102
  with st.expander("See your total text"):
103
+ st.write(all_text_together)
104
+
105
+
106
+ with tab_general_topics:
107
+ html("", height=10)
108
+
109
+ st.header("See the status of a research topic through a summary of the most cited papers")
110
+
111
+ st.selectbox("Select a research topic", ["Artificial Intelligence", "Sustainability", "Cooking"])