Meena commited on
Commit
f331cd8
1 Parent(s): 07f0cc3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -4,7 +4,6 @@ from io import StringIO
4
  import streamlit as st
5
  from app.tapas import execute_query
6
 
7
- st.write(torch.__version__)
8
  query = st.text_input(label='Enter your query')
9
  # st.write('The current movie title is', title)
10
  uploaded_file = st.file_uploader("Choose a file")
@@ -16,9 +15,9 @@ if uploaded_file is not None:
16
  st.write(query_result)
17
 
18
  expander = st.expander("View Table")
19
- expander.write(query_result)
20
  # st.table(dataframe)
21
- # Can be used wherever a "file-like" object is accepted:
22
 
23
 
24
 
 
4
  import streamlit as st
5
  from app.tapas import execute_query
6
 
 
7
  query = st.text_input(label='Enter your query')
8
  # st.write('The current movie title is', title)
9
  uploaded_file = st.file_uploader("Choose a file")
 
15
  st.write(query_result)
16
 
17
  expander = st.expander("View Table")
18
+ expander.write(dataframe)
19
  # st.table(dataframe)
20
+
21
 
22
 
23