Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -116,7 +116,7 @@ if "df" in st.session_state and llm:
|
|
| 116 |
except Exception as e:
|
| 117 |
st.error(f"Error: {e}")
|
| 118 |
|
| 119 |
-
#
|
| 120 |
with st.sidebar:
|
| 121 |
st.header("Instructions")
|
| 122 |
st.markdown(
|
|
@@ -128,3 +128,9 @@ with st.sidebar:
|
|
| 128 |
" - Example: 'Summarize the abstract of this patent.'\n"
|
| 129 |
"4. Enter a query to generate and view graphs based on patent attributes.\n"
|
| 130 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
except Exception as e:
|
| 117 |
st.error(f"Error: {e}")
|
| 118 |
|
| 119 |
+
# Instructions
|
| 120 |
with st.sidebar:
|
| 121 |
st.header("Instructions")
|
| 122 |
st.markdown(
|
|
|
|
| 128 |
" - Example: 'Summarize the abstract of this patent.'\n"
|
| 129 |
"4. Enter a query to generate and view graphs based on patent attributes.\n"
|
| 130 |
)
|
| 131 |
+
st.markdown("---")
|
| 132 |
+
st.header("References")
|
| 133 |
+
st.markdown(
|
| 134 |
+
"1. [Chat With Your CSV File With PandasAI - Prince Krampah](https://medium.com/aimonks/chat-with-your-csv-file-with-pandasai-22232a13c7b7)"
|
| 135 |
+
)
|
| 136 |
+
|