Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def chatbot():
|
|
10 |
umsg = Conversation(message)
|
11 |
answer = convo(umsg)
|
12 |
with st.chat_message("Assistant"):
|
13 |
-
st.write(answer)
|
14 |
|
15 |
chatbot()
|
16 |
|
|
|
10 |
umsg = Conversation(message)
|
11 |
answer = convo(umsg)
|
12 |
with st.chat_message("Assistant"):
|
13 |
+
st.write(answer.generated_responses[-1])
|
14 |
|
15 |
chatbot()
|
16 |
|