anujmaha commited on
Commit
ab52ca3
β€’
1 Parent(s): dcc1634

Added the sidebar

Browse files
Files changed (1) hide show
  1. app.py +9 -0
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