ppsingh commited on
Commit
af8bf50
·
verified ·
1 Parent(s): 391fa92

Update appStore/embed.py

Browse files
Files changed (1) hide show
  1. appStore/embed.py +4 -2
appStore/embed.py CHANGED
@@ -10,7 +10,7 @@ from qdrant_client.http import models
10
  device = 'cuda' if cuda.is_available() else 'cpu'
11
 
12
 
13
- def hybrid_embed_chunks(docs, collection_name):
14
  """
15
  takes the chunks and does the hybrid embedding for the list of chunks
16
  """
@@ -29,7 +29,9 @@ def hybrid_embed_chunks(docs, collection_name):
29
  client = get_client()
30
 
31
  # create collection
32
- client.delete_collection(collection_name=f"{collection_name}")
 
 
33
  client.create_collection(
34
  collection_name=collection_name,
35
  vectors_config={
 
10
  device = 'cuda' if cuda.is_available() else 'cpu'
11
 
12
 
13
+ def hybrid_embed_chunks(docs, collection_name, del_if_exists = False):
14
  """
15
  takes the chunks and does the hybrid embedding for the list of chunks
16
  """
 
29
  client = get_client()
30
 
31
  # create collection
32
+ if del_if_exists:
33
+ client.delete_collection(collection_name=f"{collection_name}")
34
+
35
  client.create_collection(
36
  collection_name=collection_name,
37
  vectors_config={