sidphbot commited on
Commit
62da212
1 Parent(s): bbcee6e

UI changes

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -78,14 +78,13 @@ def survey_space(surveyor, download_placeholder):
78
 
79
 
80
  if __name__ == '__main__':
81
- st.title('Auto-Research')
82
  st.write('#### A no-code utility to generate a detailed well-cited survey with topic clustered sections'
83
  '(draft paper format) and other interesting artifacts from a single research query or a curated set of papers(arxiv ids).')
84
  st.write('##### Data Provider: arXiv Open Archive Initiative OAI')
85
- st.sidebar.image(Image.open('logo.png'), use_column_width = 'always')
86
  survey_row = st.container()
 
87
  std_row = st.container()
88
  std_row.write('#### execution log:')
89
- std_col, download_placeholder = std_row.columns(2)
90
- surveyor_obj = get_surveyor_instance(_print_fn=std_col.write, _survey_print_fn=survey_row.write)
91
  survey_space(surveyor_obj, download_placeholder)
 
78
 
79
 
80
  if __name__ == '__main__':
81
+ st.image(Image.open('logo.png'), use_column_width = 'always')
82
  st.write('#### A no-code utility to generate a detailed well-cited survey with topic clustered sections'
83
  '(draft paper format) and other interesting artifacts from a single research query or a curated set of papers(arxiv ids).')
84
  st.write('##### Data Provider: arXiv Open Archive Initiative OAI')
 
85
  survey_row = st.container()
86
+ download_placeholder = st.container()
87
  std_row = st.container()
88
  std_row.write('#### execution log:')
89
+ surveyor_obj = get_surveyor_instance(_print_fn=std_row.write, _survey_print_fn=survey_row.write)
 
90
  survey_space(surveyor_obj, download_placeholder)