Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -62,10 +62,10 @@ if 'history' not in st.session_state:
|
|
62 |
st.session_state['history'] = []
|
63 |
|
64 |
if 'generated' not in st.session_state:
|
65 |
-
st.session_state['generated'] = ["
|
66 |
|
67 |
if 'past' not in st.session_state:
|
68 |
-
st.session_state['past'] = ["
|
69 |
|
70 |
# Create memory
|
71 |
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
|
|
|
62 |
st.session_state['history'] = []
|
63 |
|
64 |
if 'generated' not in st.session_state:
|
65 |
+
st.session_state['generated'] = ["¡Hola! Pregúntame sobre cualquier cosa 🤗"]
|
66 |
|
67 |
if 'past' not in st.session_state:
|
68 |
+
st.session_state['past'] = ["¡Hola! 👋"]
|
69 |
|
70 |
# Create memory
|
71 |
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
|