datascientist22 commited on
Commit
0f09491
·
verified ·
1 Parent(s): 80d5167

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -60,6 +60,15 @@ if st.sidebar.button("Submit API Keys"):
60
  else:
61
  st.sidebar.markdown('<p style="color:red; font-weight:bold;">Please fill in both API keys or select the option to use pre-provided keys</p>', unsafe_allow_html=True)
62
 
 
 
 
 
 
 
 
 
 
63
  # Title of the chatbot
64
  st.markdown('<h1 style="color:#4CAF50; font-weight:bold;">🤖 Chatbot with URL-based Document Retrieval</h1>', unsafe_allow_html=True)
65
 
 
60
  else:
61
  st.sidebar.markdown('<p style="color:red; font-weight:bold;">Please fill in both API keys or select the option to use pre-provided keys</p>', unsafe_allow_html=True)
62
 
63
+ # Marquee effect with bold, stylish text and a LinkedIn link
64
+ st.markdown("""
65
+ <marquee behavior="scroll" direction="left" scrollamount="10">
66
+ <p style='font-size:24px; color:#FF5733; font-weight:bold;'>
67
+ Created by: <a href="https://www.linkedin.com/in/datascientisthameshraj/" target="_blank" style="color:#1E90FF; text-decoration:none;">Engr. Hamesh Raj</a>
68
+ </p>
69
+ </marquee>
70
+ """, unsafe_allow_html=True)
71
+
72
  # Title of the chatbot
73
  st.markdown('<h1 style="color:#4CAF50; font-weight:bold;">🤖 Chatbot with URL-based Document Retrieval</h1>', unsafe_allow_html=True)
74