superduper-qdrant 0.4.0__py3-none-any.whl → 0.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- superduper_qdrant/__init__.py +1 -1
- superduper_qdrant/qdrant.py +5 -0
- {superduper_qdrant-0.4.0.dist-info → superduper_qdrant-0.7.0.dist-info}/METADATA +4 -4
- superduper_qdrant-0.7.0.dist-info/RECORD +7 -0
- {superduper_qdrant-0.4.0.dist-info → superduper_qdrant-0.7.0.dist-info}/WHEEL +1 -1
- superduper_qdrant-0.4.0.dist-info/RECORD +0 -7
- {superduper_qdrant-0.4.0.dist-info → superduper_qdrant-0.7.0.dist-info/licenses}/LICENSE +0 -0
- {superduper_qdrant-0.4.0.dist-info → superduper_qdrant-0.7.0.dist-info}/top_level.txt +0 -0
superduper_qdrant/__init__.py
CHANGED
superduper_qdrant/qdrant.py
CHANGED
@@ -94,6 +94,11 @@ class QdrantVectorSearcher(BaseVectorSearcher):
|
|
94
94
|
points.append(point)
|
95
95
|
self.client.upsert(collection_name=self.collection_name, points=points)
|
96
96
|
|
97
|
+
def drop(self):
|
98
|
+
"""Drop the vector index."""
|
99
|
+
if self.client.collection_exists(self.collection_name):
|
100
|
+
self.client.delete_collection(self.collection_name)
|
101
|
+
|
97
102
|
def delete(self, ids: t.Sequence[str]) -> None:
|
98
103
|
"""Delete vectors from the index.
|
99
104
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: superduper_qdrant
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: SuperDuper Lance is a Python library that provides a high-level API for working with Lance vector search database.
|
5
5
|
Maintainer-email: "superduper.io, Inc." <opensource@superduper.io>
|
6
6
|
License:
|
@@ -213,5 +213,5 @@ Keywords: databases,mongodb,data-science,machine-learning,mlops,vector-database,
|
|
213
213
|
Requires-Python: >=3.10
|
214
214
|
Description-Content-Type: text/markdown
|
215
215
|
License-File: LICENSE
|
216
|
-
Requires-Dist: qdrant-client
|
217
|
-
|
216
|
+
Requires-Dist: qdrant-client<2,>=1.10.0
|
217
|
+
Dynamic: license-file
|
@@ -0,0 +1,7 @@
|
|
1
|
+
superduper_qdrant/__init__.py,sha256=42MYMwS_4ytzPgI3s1BqB6j8adwNC7wxi_vl5OmTxHM,112
|
2
|
+
superduper_qdrant/qdrant.py,sha256=l61OUQB6WNHwh-sJny5D0NdsfHbRImaw_T-RyUjU-C0,6440
|
3
|
+
superduper_qdrant-0.7.0.dist-info/licenses/LICENSE,sha256=fq2WxmjewRN4VfDClVl-6CiVFZedp4y5_iGqQiXHBN8,11353
|
4
|
+
superduper_qdrant-0.7.0.dist-info/METADATA,sha256=G_f-oVYWi7irDXyEAns-uLs0o_q-Jtc-Tiojhk0DABo,13638
|
5
|
+
superduper_qdrant-0.7.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
6
|
+
superduper_qdrant-0.7.0.dist-info/top_level.txt,sha256=sq-9pdkTJIhMAzMoSI_UlucyRUrPk4Da78PFG_hPcd8,18
|
7
|
+
superduper_qdrant-0.7.0.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
superduper_qdrant/__init__.py,sha256=aSsgp9EUATH6oQB7PzsvN3LPOZun1F4PkBffzP45Prs,112
|
2
|
-
superduper_qdrant/qdrant.py,sha256=Wkmo2N7tnA7zguC6RVtD5-XVXR3GqVAfcgzPxj7objM,6254
|
3
|
-
superduper_qdrant-0.4.0.dist-info/LICENSE,sha256=fq2WxmjewRN4VfDClVl-6CiVFZedp4y5_iGqQiXHBN8,11353
|
4
|
-
superduper_qdrant-0.4.0.dist-info/METADATA,sha256=SyEnwMyQB6b5fiX2mN2Zwkqn1UTs0VHd20-LLasXaEY,13618
|
5
|
-
superduper_qdrant-0.4.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
6
|
-
superduper_qdrant-0.4.0.dist-info/top_level.txt,sha256=sq-9pdkTJIhMAzMoSI_UlucyRUrPk4Da78PFG_hPcd8,18
|
7
|
-
superduper_qdrant-0.4.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|