You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search hits Facts, graph discovers Episodes, traces back to source Sentences. SQLite by default — swap to Postgres, Neo4j, or Qdrant when you're ready to scale.
32
+
Search hits Facts, graph discovers Episodes, traces back to source Sentences. SQLite by default — swap to Postgres, Neo4j, Qdrant, or Milvus when you're ready to scale.
33
33
34
34
---
35
35
@@ -49,7 +49,8 @@ Still improving. Run your own in [`/benchmarks`](benchmarks/).
49
49
pip install vektori # SQLite + Postgres
50
50
pip install 'vektori[neo4j]'# + Neo4j support
51
51
pip install 'vektori[qdrant]'# + Qdrant support
52
-
pip install 'vektori[neo4j,qdrant]'# all backends
52
+
pip install 'vektori[milvus]'# + Milvus support
53
+
pip install 'vektori[neo4j,qdrant,milvus]'# all backends
53
54
```
54
55
55
56
No Docker, no external services. SQLite by default.
@@ -221,6 +222,21 @@ v = Vektori(
221
222
embedding_dimension=1024,
222
223
)
223
224
225
+
# Milvus — high-scale vector store with partition-key isolation
226
+
v = Vektori(
227
+
storage_backend="milvus",
228
+
database_url="http://localhost:19530",
229
+
embedding_dimension=1024,
230
+
)
231
+
232
+
# Milvus / Zilliz Cloud
233
+
v = Vektori(
234
+
storage_backend="milvus",
235
+
database_url="https://your-cluster-endpoint",
236
+
milvus_token="your-api-key-or-token",
237
+
embedding_dimension=1024,
238
+
)
239
+
224
240
# In-memory — tests / CI
225
241
v = Vektori(storage_backend="memory")
226
242
```
@@ -229,7 +245,7 @@ v = Vektori(storage_backend="memory")
0 commit comments