spallas commited on
Commit
cd46ff0
1 Parent(s): 9af1762

Fix app.py bug

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -335,7 +335,7 @@ def add_user_message(
335
  )
336
  if message["text"] is not None:
337
  history.append(
338
- [message["text"] + additional_instructions, None]
339
  # user msg: str, bot msg: None
340
  )
341
  if THREAD is None:
 
335
  )
336
  if message["text"] is not None:
337
  history.append(
338
+ [message["text"] + chat_instructions, None]
339
  # user msg: str, bot msg: None
340
  )
341
  if THREAD is None: