umangchaudhry commited on
Commit
3129282
·
1 Parent(s): 1ca5908

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def respond(message, chat_history):
33
  "maximal_marginal_relevance":True,
34
  "k":10})
35
 
36
- if len(chat_history) == 0:
37
  chat_history = chat_history[1]
38
 
39
  # Create ChatOpenAI and ConversationalRetrievalChain
 
33
  "maximal_marginal_relevance":True,
34
  "k":10})
35
 
36
+ if len(chat_history) != 0:
37
  chat_history = chat_history[1]
38
 
39
  # Create ChatOpenAI and ConversationalRetrievalChain