bibekyess commited on
Commit
5d033fe
·
1 Parent(s): d0f9757

Appends B-Bot information

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -62,6 +62,12 @@ def load_model():
62
  return tokenizer, model
63
 
64
  st.title("BGPT : Bibek's Personal Chatbot")
 
 
 
 
 
 
65
  # Storing the chat
66
  if "generated" not in st.session_state:
67
  st.session_state["generated"] = []
 
62
  return tokenizer, model
63
 
64
  st.title("BGPT : Bibek's Personal Chatbot")
65
+
66
+ # Extra information
67
+ st.markdown("""
68
+ #### Click [here](https://bibekbot.streamlit.app/) to chat with rule-based B-Bot *[α-version]*!""")
69
+
70
+
71
  # Storing the chat
72
  if "generated" not in st.session_state:
73
  st.session_state["generated"] = []