Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update appStore/embed.py
Browse files- 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 |
-
|
|
|
|
|
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={
|