File size: 494 Bytes
3b8c253
 
 
04070c4
df852e4
 
3b8c253
 
df852e4
3b8c253
 
 
 
 
 
 
 
 
 
 
df852e4
3b8c253
 
 
 
 
 
 
 
 
 
df852e4
 
97eac40
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
import streamlit as st
import chatbot



def main():
   chatbot.chat()


   
# for user (You)
st.markdown("""
    <style>
    .user-label {
        color: #0066ff;
        font-weight: bold;
        font-size: 19px;
    }
    </style>
""", unsafe_allow_html=True)

# for Assistant
st.markdown("""
    <style>
    .assistant-label {
        color: #FF4B4B;
        font-weight: bold;
        font-size: 18px;
    }
    </style>
""", unsafe_allow_html=True)

if __name__ == "__main__":
    main()