Spaces:
Runtime error
Runtime error
Commit
·
3129282
1
Parent(s):
1ca5908
Update app.py
Browse files
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)
|
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
|