Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,7 @@ if "df" in st.session_state and llm:
|
|
116 |
|
117 |
# Instructions
|
118 |
with st.sidebar:
|
119 |
-
st.header("Instructions")
|
120 |
st.markdown(
|
121 |
"1. Select how you want to input the dataset.\n"
|
122 |
"2. Upload, select, or fetch the dataset using the provided options.\n"
|
@@ -127,8 +127,9 @@ with st.sidebar:
|
|
127 |
"4. Enter a query to generate and view graphs based on patent attributes.\n"
|
128 |
)
|
129 |
st.markdown("---")
|
130 |
-
st.header("References")
|
131 |
st.markdown(
|
132 |
"1. [Chat With Your CSV File With PandasAI - Prince Krampah](https://medium.com/aimonks/chat-with-your-csv-file-with-pandasai-22232a13c7b7)"
|
|
|
133 |
)
|
134 |
|
|
|
116 |
|
117 |
# Instructions
|
118 |
with st.sidebar:
|
119 |
+
st.header("Instructions:")
|
120 |
st.markdown(
|
121 |
"1. Select how you want to input the dataset.\n"
|
122 |
"2. Upload, select, or fetch the dataset using the provided options.\n"
|
|
|
127 |
"4. Enter a query to generate and view graphs based on patent attributes.\n"
|
128 |
)
|
129 |
st.markdown("---")
|
130 |
+
st.header("References:")
|
131 |
st.markdown(
|
132 |
"1. [Chat With Your CSV File With PandasAI - Prince Krampah](https://medium.com/aimonks/chat-with-your-csv-file-with-pandasai-22232a13c7b7)"
|
133 |
+
"2. ..."
|
134 |
)
|
135 |
|