adarsh commited on
Commit
7339830
1 Parent(s): 89cfcf5

updated app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -35,8 +35,9 @@ st.markdown("""
35
  transition: all 0.3s ease;
36
  }
37
  .stButton>button:hover {
38
- background-color: #45a049;
39
  transform: scale(1.05);
 
40
  }
41
  .footer {
42
  position: fixed;
@@ -61,7 +62,11 @@ if 'chat_history' not in st.session_state:
61
  st.session_state.chat_history = []
62
 
63
  # Header
64
- st.title("🏥 Medical Chatbot")
 
 
 
 
65
 
66
  # Initialize the chatbot components
67
  @st.cache_resource
@@ -132,8 +137,9 @@ st.markdown("""
132
  <a href="https://github.com/4darsh-Dev" target="_blank"><i class="fab fa-github"></i></a>
133
  <a href="https://linkedin.com/in/adarsh-maurya-dev" target="_blank"><i class="fab fa-linkedin"></i></a>
134
  <a href="https://adarshmaurya.onionreads.com" target="_blank"><i class="fas fa-globe"></i></a>
 
135
  </div>
136
- <p>Adarsh Maurya© 2024 Medical Chatbot. All rights reserved.</p>
137
  </div>
138
  """, unsafe_allow_html=True)
139
 
 
35
  transition: all 0.3s ease;
36
  }
37
  .stButton>button:hover {
38
+ background-color: #333;
39
  transform: scale(1.05);
40
+ color:#fff;
41
  }
42
  .footer {
43
  position: fixed;
 
62
  st.session_state.chat_history = []
63
 
64
  # Header
65
+ st.title("🏥 Medicure RAG Chatbot")
66
+
67
+ # Display welcome message
68
+ st.write("Welcome to Medicure Chatbot! Ask any medical question and I'll do my best to help you.")
69
+ st.write("#### Built with 🤗 Ctransformers, Langchain, and Pinecone. Powered by Metal-llama2-7b-chat quantized LLM")
70
 
71
  # Initialize the chatbot components
72
  @st.cache_resource
 
137
  <a href="https://github.com/4darsh-Dev" target="_blank"><i class="fab fa-github"></i></a>
138
  <a href="https://linkedin.com/in/adarsh-maurya-dev" target="_blank"><i class="fab fa-linkedin"></i></a>
139
  <a href="https://adarshmaurya.onionreads.com" target="_blank"><i class="fas fa-globe"></i></a>
140
+ <a href="https://www.kaggle.com/adarshm09" target="_blank"><i class="fab fa-kaggle"></i></a>
141
  </div>
142
+ <p> <p style="text-align:center;">Made with ❤️ by <a href="https://www.adarshmaurya.onionreads.com">Adarsh Maurya</a></p> </p>
143
  </div>
144
  """, unsafe_allow_html=True)
145