Spaces:
Sleeping
Sleeping
Added the sidebar
Browse files
app.py
CHANGED
@@ -27,6 +27,15 @@ import base64
|
|
27 |
|
28 |
st.header("LangChain π¦π Documentation - Helper ChatBot")
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
if "user_prompt_history" not in st.session_state:
|
31 |
st.session_state["user_prompt_history"] = []
|
32 |
|
|
|
27 |
|
28 |
st.header("LangChain π¦π Documentation - Helper ChatBot")
|
29 |
|
30 |
+
# st.sidebar.markdown(
|
31 |
+
# """
|
32 |
+
# This is Langchain Helper Bot.
|
33 |
+
# What this offers is easy scraping of Langchain documentation.
|
34 |
+
# Instead of going through tedious Langchain documentation, just submit your query over here about any langchain topic and you will get the answer
|
35 |
+
# """
|
36 |
+
# )
|
37 |
+
|
38 |
+
|
39 |
if "user_prompt_history" not in st.session_state:
|
40 |
st.session_state["user_prompt_history"] = []
|
41 |
|