Spaces:
Running
Running
fschwartzer
commited on
Commit
•
31a3643
1
Parent(s):
10379c1
Update app.py
Browse files
app.py
CHANGED
@@ -49,14 +49,14 @@ user_question = st.text_input("Escreva sua questão aqui:", "")
|
|
49 |
if user_question:
|
50 |
# Adiciona emoji de pessoa quando a pergunta está sendo digitada
|
51 |
st.session_state['history'].append(('👤', user_question))
|
52 |
-
st.
|
53 |
|
54 |
# Gera a resposta
|
55 |
bot_response = response(user_question)
|
56 |
|
57 |
-
# Adiciona emoji de robô quando a resposta está sendo gerada
|
58 |
st.session_state['history'].append(('🤖', bot_response))
|
59 |
-
st.
|
60 |
|
61 |
# Botão para limpar o histórico
|
62 |
if st.button("Limpar"):
|
@@ -65,6 +65,6 @@ if st.button("Limpar"):
|
|
65 |
# Exibe o histórico de conversas
|
66 |
for sender, message in st.session_state['history']:
|
67 |
if sender == '👤':
|
68 |
-
st.
|
69 |
elif sender == '🤖':
|
70 |
-
st.
|
|
|
49 |
if user_question:
|
50 |
# Adiciona emoji de pessoa quando a pergunta está sendo digitada
|
51 |
st.session_state['history'].append(('👤', user_question))
|
52 |
+
st.markdown(f"**👤 {user_question}**")
|
53 |
|
54 |
# Gera a resposta
|
55 |
bot_response = response(user_question)
|
56 |
|
57 |
+
# Adiciona emoji de robô quando a resposta está sendo gerada e alinha à direita
|
58 |
st.session_state['history'].append(('🤖', bot_response))
|
59 |
+
st.markdown(f"<div style='text-align: right'>**🤖 {bot_response}**</div>", unsafe_allow_html=True)
|
60 |
|
61 |
# Botão para limpar o histórico
|
62 |
if st.button("Limpar"):
|
|
|
65 |
# Exibe o histórico de conversas
|
66 |
for sender, message in st.session_state['history']:
|
67 |
if sender == '👤':
|
68 |
+
st.markdown(f"**👤 {message}**")
|
69 |
elif sender == '🤖':
|
70 |
+
st.markdown(f"<div style='text-align: right'>**🤖 {message}**</div>", unsafe_allow_html=True)
|