Update app2.py
Browse files
app2.py
CHANGED
@@ -88,7 +88,7 @@ if st.session_state.df is not None:
|
|
88 |
st.write(response)
|
89 |
|
90 |
# Check for keywords that indicate the user wants a plot
|
91 |
-
if any(keyword in user_query.lower() for keyword in ["plot", "graph", "draw", "visualize", "chart", "visualizations"]):
|
92 |
st.write("### Generating Plot...")
|
93 |
try:
|
94 |
chat_df.chat(user_query)
|
|
|
88 |
st.write(response)
|
89 |
|
90 |
# Check for keywords that indicate the user wants a plot
|
91 |
+
if any(keyword in user_query.lower() for keyword in ["plot", "graph", "draw", "visualize", "chart", "visualizations", "visualise"]):
|
92 |
st.write("### Generating Plot...")
|
93 |
try:
|
94 |
chat_df.chat(user_query)
|