Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -71,7 +71,7 @@ qa = RetrievalQA.from_chain_type(
|
|
| 71 |
import streamlit as st
|
| 72 |
|
| 73 |
# Streamlit interface with improved aesthetics
|
| 74 |
-
st.set_page_config(page_title="
|
| 75 |
|
| 76 |
# Define function to handle user input and display chatbot response
|
| 77 |
def chatbot_response(user_input):
|
|
@@ -99,7 +99,7 @@ st.markdown("""
|
|
| 99 |
""", unsafe_allow_html=True)
|
| 100 |
|
| 101 |
# Utiliser la classe CSS pour centrer et colorer le texte
|
| 102 |
-
st.markdown('<h3 class="centered-text">🤖
|
| 103 |
st.markdown("""
|
| 104 |
<style>
|
| 105 |
.centered-orange-text {
|
|
@@ -111,7 +111,7 @@ st.markdown("""
|
|
| 111 |
|
| 112 |
# Centrer le texte principal
|
| 113 |
# Centrer et colorer en orange foncé le texte spécifique
|
| 114 |
-
st.markdown('<p class="centered-orange-text">Votre Réponse à Chaque Défi Méthodologique
|
| 115 |
# Input and button for user interaction
|
| 116 |
user_input = st.text_input("You:", "")
|
| 117 |
submit_button = st.button("Ask 📨")
|
|
|
|
| 71 |
import streamlit as st
|
| 72 |
|
| 73 |
# Streamlit interface with improved aesthetics
|
| 74 |
+
st.set_page_config(page_title="Alter-IA Chat", page_icon="🤖")
|
| 75 |
|
| 76 |
# Define function to handle user input and display chatbot response
|
| 77 |
def chatbot_response(user_input):
|
|
|
|
| 99 |
""", unsafe_allow_html=True)
|
| 100 |
|
| 101 |
# Utiliser la classe CSS pour centrer et colorer le texte
|
| 102 |
+
st.markdown('<h3 class="centered-text">🤖 AlteriaChat 🤖 </h3>', unsafe_allow_html=True)
|
| 103 |
st.markdown("""
|
| 104 |
<style>
|
| 105 |
.centered-orange-text {
|
|
|
|
| 111 |
|
| 112 |
# Centrer le texte principal
|
| 113 |
# Centrer et colorer en orange foncé le texte spécifique
|
| 114 |
+
st.markdown('<p class="centered-orange-text">"Votre Réponse à Chaque Défi Méthodologique "</p>', unsafe_allow_html=True)
|
| 115 |
# Input and button for user interaction
|
| 116 |
user_input = st.text_input("You:", "")
|
| 117 |
submit_button = st.button("Ask 📨")
|