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

Uncommented Sidebar Code

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -27,13 +27,13 @@ import base64
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:
 
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: