File size: 854 Bytes
3158180
bab4d96
3158180
 
155dbc2
d422eee
3158180
 
 
 
 
d422eee
 
3158180
d422eee
 
 
 
3158180
d422eee
 
cf16595
3158180
d422eee
 
3158180
 
d422eee
 
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
28
29
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)