Cheselle commited on
Commit
f1212b4
·
verified ·
1 Parent(s): 27aa3e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -66,7 +66,8 @@ embeddings = embedding_model.encode(ai_framework_text + ai_blueprint_text)
66
 
67
  vectorstore = Qdrant.from_documents(
68
  documents=combined_documents,
69
- embedding=embeddings,
 
70
  location=":memory:",
71
  collection_name="ai_policy"
72
  )
 
66
 
67
  vectorstore = Qdrant.from_documents(
68
  documents=combined_documents,
69
+ embedding=embedding_model,
70
+ #embedding=embeddings,
71
  location=":memory:",
72
  collection_name="ai_policy"
73
  )