Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,7 +37,14 @@ def response(question):
|
|
| 37 |
return final_response
|
| 38 |
|
| 39 |
# Interface Streamlit
|
| 40 |
-
st.markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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:
|