Harsh2001's picture
Update app.py
cf16595 verified
raw
history blame contribute delete
854 Bytes
import streamlit as st
from utils import get_answer
# Streamlit app layout
st.title("Know More About Israel Hamas War")
st.write("Welcome to the chatbot. Ask me anything regarding Israel Hamas War!!")
# Session state to store the conversation
if 'conversation' not in st.session_state:
st.session_state.conversation = []
# Input box for user
user_input = st.text_input("You:", "")
if st.button("Send"):
if user_input:
# Get bot response
bot_response = get_answer(user_input)
# Append both user input and bot response to conversation
st.session_state.conversation.append(f"You: {user_input}")
st.session_state.conversation.append(f"Bot: {bot_response}")
# Clear the input box
st.experimental_rerun()
# Display conversation
for line in st.session_state.conversation:
st.write(line)