File size: 1,282 Bytes
d88ff3b
 
574481e
 
 
d88ff3b
 
 
 
 
 
 
574481e
 
 
 
 
 
7a66365
 
 
 
 
c49fa9d
 
 
 
 
 
 
7a66365
 
 
574481e
 
 
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
30
31
32
33
34
35
36
import asyncio
import sys
import streamlit as st
import os
from pathlib import Path
try:
    asyncio.get_running_loop()
except RuntimeError:
    asyncio.set_event_loop(asyncio.new_event_loop())

sys.path.append(str(Path(__file__).parent))

def main():
    st.set_page_config(
        page_title="Audio Emotion Recognition System",
        page_icon="🎡",
        layout="wide"
    )
    st.sidebar.title("Navigation Bar")
    st.sidebar.markdown("<small>(Chatbot is not available now, update soon...πŸ˜‰)</small>", unsafe_allow_html=True)
    app_mode = st.sidebar.radio("Go to", ["Emotion Analyzer", "Chatbot"])
    if app_mode == "Emotion Analyzer":
        from emotion_analyzer import show  # η›΄ζŽ₯ε―Όε…₯樑块
        # βœ… 在 `main.py` ι‡Œεˆε§‹εŒ– `session_state`
        if "emotion_result" not in st.session_state:
            st.session_state.emotion_result = None
        if "feedback_submitted" not in st.session_state:
            st.session_state.feedback_submitted = False
        if "user_feedback" not in st.session_state:
            st.session_state.user_feedback = ""
        show()
    elif app_mode == "Chatbot":
        st.write("Chatbot is not available now, update soon...πŸ˜‰")

if __name__ == "__main__":
    main()