Spaces:
Sleeping
Sleeping
Commit
Β·
b4f2211
1
Parent(s):
f325ad3
Update pages/CSV_Data_Analyzer.py
Browse files
pages/CSV_Data_Analyzer.py
CHANGED
@@ -4,8 +4,8 @@ from utils1 import query_agent
|
|
4 |
st.set_page_config(page_title="Spreadsheet Analyzer")
|
5 |
#st.title("π€ Let's do some analysis on your CSV...")
|
6 |
#st.title("πππ Let's analyze your CSV...")
|
7 |
-
st.title("
|
8 |
-
st.subheader("
|
9 |
|
10 |
#st.sidebar.title("π")
|
11 |
st.sidebar.image('./csv_analysis.png',width=300, use_column_width=True)
|
@@ -24,7 +24,7 @@ div.stButton > button:hover {
|
|
24 |
</style>""", unsafe_allow_html=True)
|
25 |
|
26 |
# Capture the CSV file
|
27 |
-
data = st.file_uploader("
|
28 |
|
29 |
query = st.text_area("Enter your query π")
|
30 |
button = st.button("Generate Response")
|
|
|
4 |
st.set_page_config(page_title="Spreadsheet Analyzer")
|
5 |
#st.title("π€ Let's do some analysis on your CSV...")
|
6 |
#st.title("πππ Let's analyze your CSV...")
|
7 |
+
st.title("π€ CSV Data Analyzer")
|
8 |
+
st.subheader("π Let's analyze your CSV")
|
9 |
|
10 |
#st.sidebar.title("π")
|
11 |
st.sidebar.image('./csv_analysis.png',width=300, use_column_width=True)
|
|
|
24 |
</style>""", unsafe_allow_html=True)
|
25 |
|
26 |
# Capture the CSV file
|
27 |
+
data = st.file_uploader("Please upload your CSV file here",type="csv")
|
28 |
|
29 |
query = st.text_area("Enter your query π")
|
30 |
button = st.button("Generate Response")
|