KvrParaskevi
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -54,10 +54,10 @@ booking process.
|
|
54 |
#Check if chat history exists in this session
|
55 |
if 'chat_history' not in st.session_state:
|
56 |
st.session_state.chat_history = [
|
57 |
-
{
|
58 |
-
"role": "system",
|
59 |
-
"content": system_content,
|
60 |
-
},
|
61 |
{"role": "assistant", "content": "Hello, how can I help you today?"},
|
62 |
] #Initialize chat history
|
63 |
|
|
|
54 |
#Check if chat history exists in this session
|
55 |
if 'chat_history' not in st.session_state:
|
56 |
st.session_state.chat_history = [
|
57 |
+
#{
|
58 |
+
#"role": "system",
|
59 |
+
#"content": system_content,
|
60 |
+
#},
|
61 |
{"role": "assistant", "content": "Hello, how can I help you today?"},
|
62 |
] #Initialize chat history
|
63 |
|