File size: 682 Bytes
0105e3b
8799fb1
 
af09235
ea4634d
8799fb1
 
ea4634d
8799fb1
 
 
 
 
ea4634d
8799fb1
 
 
ea4634d
8799fb1
 
 
 
e94ec88
8799fb1
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
import streamlit as st
from chatbot import chatbot_response
from db import get_mongo_data
import pandas as pd

# Streamlit UI
st.title("Twitter Sentiment Analysis Chatbot")

# Display MongoDB Data
st.subheader("MongoDB Data (First 5 Rows)")
mongo_data = get_mongo_data()
if mongo_data is not None:
    st.dataframe(pd.DataFrame(mongo_data).head())

# Chatbot Input
st.subheader("Chat with the Sentiment Analysis Bot")
user_input = st.text_input("Enter a tweet to analyze:")

if st.button("Analyze"):
    if user_input:
        response = chatbot_response(user_input)
        st.write("**Sentiment Analysis Result:**", response)
    else:
        st.warning("Please enter a tweet.")