KvrParaskevi commited on
Commit
db5e56e
·
verified ·
1 Parent(s): 7c912db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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