Update app.py
Browse files
app.py
CHANGED
|
@@ -153,7 +153,7 @@ if st.session_state.df is not None:
|
|
| 153 |
tab1, tab2 = st.tabs(["π Query Insights + Viz", "π Full Data Viz"])
|
| 154 |
|
| 155 |
with tab1:
|
| 156 |
-
query = st.text_area("Enter Query:",
|
| 157 |
if st.button("Submit Query"):
|
| 158 |
with st.spinner("Processing query..."):
|
| 159 |
inputs = {"query": query}
|
|
|
|
| 153 |
tab1, tab2 = st.tabs(["π Query Insights + Viz", "π Full Data Viz"])
|
| 154 |
|
| 155 |
with tab1:
|
| 156 |
+
query = st.text_area("Enter Query:", value="Provide insights into the salary of a Principal Data Scientist.")
|
| 157 |
if st.button("Submit Query"):
|
| 158 |
with st.spinner("Processing query..."):
|
| 159 |
inputs = {"query": query}
|