fschwartzer commited on
Commit
4ade980
1 Parent(s): 3a731e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -37,7 +37,14 @@ def response(question):
37
  return final_response
38
 
39
  # Interface Streamlit
40
- st.markdown("# 🟢 🔴 🟡 Chatbot do Tesouro RS")
 
 
 
 
 
 
 
41
 
42
  # Histórico de conversas
43
  if 'history' not in st.session_state:
 
37
  return final_response
38
 
39
  # Interface Streamlit
40
+ st.markdown("""
41
+ <div style='display: flex; align-items: center;'>
42
+ <div style='width: 20px; height: 20px; background-color: green; border-radius: 50%; margin-right: 5px;'></div>
43
+ <div style='width: 20px; height: 20px; background-color: red; border-radius: 50%; margin-right: 5px;'></div>
44
+ <div style='width: 20px; height: 20px; background-color: yellow; border-radius: 50%; margin-right: 10px;'></div>
45
+ <span style='font-size: 24px; font-weight: bold;'>Chatbot do Tesouro RS</span>
46
+ </div>
47
+ """, unsafe_allow_html=True)
48
 
49
  # Histórico de conversas
50
  if 'history' not in st.session_state: