Skip to content

Commit a2421a6

Browse files
authored
docs(epsilla): add epsilla integration guide (#1838)
Signed-off-by: Tony Yang <[email protected]>
1 parent 8de3e17 commit a2421a6

File tree

4 files changed

+570
-0
lines changed

4 files changed

+570
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# EpsillaDocumentIndex
2+
3+
::: docarray.index.backends.epsilla.EpsillaDocumentIndex

docs/user_guide/storing/docindex.md

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Currently, DocArray supports the following vector databases:
3737
- [Weaviate](https://weaviate.io/) | [Docs](index_weaviate.md)
3838
- [Qdrant](https://qdrant.tech/) | [Docs](index_qdrant.md)
3939
- [Elasticsearch](https://www.elastic.co/elasticsearch/) v7 and v8 | [Docs](index_elastic.md)
40+
- [Epsilla](https://epsilla.com/) | [Docs](index_epsilla.md)
4041
- [Redis](https://redis.com/) | [Docs](index_redis.md)
4142
- [Milvus](https://milvus.io/) | [Docs](index_milvus.md)
4243
- [HNSWlib](https://github.com/nmslib/hnswlib) | [Docs](index_hnswlib.md)
@@ -67,11 +68,13 @@ from docarray.index import InMemoryExactNNIndex
6768
from docarray.typing import NdArray
6869
import numpy as np
6970

71+
7072
class MyDoc(BaseDoc):
7173
title: str
7274
price: int
7375
embedding: NdArray[128]
7476

77+
7578
docs = DocList[MyDoc](
7679
MyDoc(title=f"title #{i}", price=i, embedding=np.random.rand(128))
7780
for i in range(10)
@@ -120,6 +123,7 @@ To learn more and get the most out of `DocArray`, take a look at the detailed gu
120123
- [Weaviate](https://weaviate.io/) | [Docs](index_weaviate.md)
121124
- [Qdrant](https://qdrant.tech/) | [Docs](index_qdrant.md)
122125
- [Elasticsearch](https://www.elastic.co/elasticsearch/) v7 and v8 | [Docs](index_elastic.md)
126+
- [Epsilla](https://epsilla.com/) | [Docs](index_epsilla.md)
123127
- [Redis](https://redis.com/) | [Docs](index_redis.md)
124128
- [Milvus](https://milvus.io/) | [Docs](index_milvus.md)
125129
- [HNSWlib](https://github.com/nmslib/hnswlib) | [Docs](index_hnswlib.md)

0 commit comments

Comments
 (0)