Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.')
|