Spaces:
Runtime error
Runtime error
Commit
·
d296afe
1
Parent(s):
02c3c3c
Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ def respond(message, chat_history):
|
|
34 |
"k":10})
|
35 |
|
36 |
if len(chat_history) != 0:
|
37 |
-
chat_history = chat_history[0]
|
38 |
|
39 |
# Create ChatOpenAI and ConversationalRetrievalChain
|
40 |
model = ChatOpenAI(model='gpt-3.5-turbo')
|
|
|
34 |
"k":10})
|
35 |
|
36 |
if len(chat_history) != 0:
|
37 |
+
chat_history = [(chat_history[0][0], chat_history[0][1])]
|
38 |
|
39 |
# Create ChatOpenAI and ConversationalRetrievalChain
|
40 |
model = ChatOpenAI(model='gpt-3.5-turbo')
|