File size: 856 Bytes
e9497da
 
9fd7b9c
 
7f8731d
42d5f44
7f8731d
42d5f44
7f8731d
 
42d5f44
9fd7b9c
 
42d5f44
 
7f8731d
 
42d5f44
 
 
7f8731d
 
e9497da
7f8731d
 
 
42d5f44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Define function to handle user input and display chatbot response
def chatbot_response(user_input):
    response = qa.run(user_input)
    return response


# Create columns for logos
col1, col2, col3 = st.columns([1, 3, 1])

with col1:
    st.image("Design 3_2 (1).png", width=100)  # Adjust image path and size as needed

with col2:
    st.markdown("# 🤖 ALTER-IA BOT")
    st.markdown(" Votre Réponse à Chaque Défi Méthodologique 📈")

with col3:
    st.image("Altereo logo 2023 original - eau et territoires durables.png", width=100)  # Adjust image path and size as needed



# Input and button for user interaction
user_input = st.text_input("You:", "")

# Motivational quote at the bottom
st.markdown("---")
st.markdown("*La collaboration est la clé du succès. Chaque question trouve sa réponse, chaque défi devient une opportunité.*")