saadob12 commited on
Commit
dcfd954
·
1 Parent(s): 9e7a428

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,8 +62,8 @@ class Model:
62
  summary = str(tgt_text).strip('[]""')
63
  return summary
64
 
65
-
66
- st.write('This application generates a summary of a datafile (.csv). Right now, it only generates summaries of files with maximum of four columns. If the file contains more than four columns, the app will throw an error.')
67
  mode = st.selectbox('What kind of summary do you want?',
68
  ('Simple', 'Analytical'))
69
  st.write('You selected: ' + mode + ' summary.')
 
62
  summary = str(tgt_text).strip('[]""')
63
  return summary
64
 
65
+ st.title('Chart and Data Summarization')
66
+ st.write('This application generates a summary of a datafile (.csv) (or the underlying data of a chart). Right now, it only generates summaries of files with maximum of four columns. If the file contains more than four columns, the app will throw an error.')
67
  mode = st.selectbox('What kind of summary do you want?',
68
  ('Simple', 'Analytical'))
69
  st.write('You selected: ' + mode + ' summary.')