umangchaudhry commited on
Commit
638e87c
·
1 Parent(s): e804147

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -42,9 +42,10 @@ def respond(message, chat_history):
42
 
43
  if len(chat_history) != 0:
44
  chat_history = [(chat_history[0][0], chat_history[0][1])]
45
-
 
46
  # Create ChatOpenAI and ConversationalRetrievalChain
47
- model = ChatOpenAI(model=get_model())
48
  qa = ConversationalRetrievalChain.from_llm(model, retriever)
49
 
50
  bot_message = qa({"question": message, "chat_history": chat_history})
 
42
 
43
  if len(chat_history) != 0:
44
  chat_history = [(chat_history[0][0], chat_history[0][1])]
45
+
46
+ model = as.str(get_model())
47
  # Create ChatOpenAI and ConversationalRetrievalChain
48
+ model = ChatOpenAI(model=model)
49
  qa = ConversationalRetrievalChain.from_llm(model, retriever)
50
 
51
  bot_message = qa({"question": message, "chat_history": chat_history})