test / app.py
mery22's picture
Update app.py
42d5f44 verified
raw
history blame
No virus
856 Bytes
# 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é.*")