File size: 1,145 Bytes
0105e3b
af09235
7268351
be89ae1
ea4634d
e332fa0
7268351
ea4634d
6e2dc41
7268351
ea4634d
6e2dc41
 
 
7268351
3280b9f
5a94c8e
7268351
 
 
 
5a94c8e
f16063a
3280b9f
e94ec88
f16063a
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
import streamlit as st
import pandas as pd
from db import insert_data_if_empty, get_mongo_client
from chatbot import chatbot_response

# Insert historical data into MongoDB if not already present.
insert_data_if_empty()

# Connect to MongoDB (for additional visualizations if needed).
collection = get_mongo_client()

st.subheader("💬 Chatbot with Sentiment, Topic Analysis, and Dataset Entry Insights")
user_prompt = st.text_area(
    "Ask me something (e.g., 'What is the sentiment and category for the first data entry in the dataset'):")

if st.button("Get AI Response"):
    ai_response, sentiment_label, sentiment_confidence, topic_label, topic_confidence = chatbot_response(user_prompt)
    if ai_response:
        st.write("### AI Response:")
        st.write(ai_response)
        st.write("### Sentiment Analysis:")
        st.write(f"**Sentiment:** {sentiment_label} ({sentiment_confidence:.2f} confidence)")
        st.write("### Category Extraction:")
        st.write(f"**Detected Category:** {topic_label} ({topic_confidence:.2f} confidence)")
    else:
        st.warning("⚠️ Please enter a question or text for analysis.")