|
import streamlit as st |
|
from utils import get_answer |
|
|
|
|
|
st.title("Know More About Israel Hamas War") |
|
st.write("Welcome to the chatbot. Ask me anything regarding Israel Hamas War!!") |
|
|
|
|
|
if 'conversation' not in st.session_state: |
|
st.session_state.conversation = [] |
|
|
|
|
|
user_input = st.text_input("You:", "") |
|
|
|
if st.button("Send"): |
|
if user_input: |
|
|
|
bot_response = get_answer(user_input) |
|
|
|
|
|
st.session_state.conversation.append(f"You: {user_input}") |
|
st.session_state.conversation.append(f"Bot: {bot_response}") |
|
|
|
|
|
st.experimental_rerun() |
|
|
|
|
|
for line in st.session_state.conversation: |
|
st.write(line) |