anasmkh commited on
Commit
f59b537
·
verified ·
1 Parent(s): f4d21c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ vector_store = QdrantVectorStore.from_documents(
55
  memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
56
 
57
  # Set up the retriever
58
- retriever = vector_store.as_retriever(search_type="hybrid", search_kwargs={"k": 3})
59
 
60
  # Set up the language model
61
  llm = ChatOpenAI(model="gpt-3.5-turbo", temperature=0.3)
 
55
  memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
56
 
57
  # Set up the retriever
58
+ retriever = vector_store.as_retriever( search_kwargs={"k": 3})
59
 
60
  # Set up the language model
61
  llm = ChatOpenAI(model="gpt-3.5-turbo", temperature=0.3)