Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs(epsilla): add epsilla integration guide
Signed-off-by: Tony Yang <[email protected]>
  • Loading branch information
tonyyanga committed Dec 21, 2023
commit 3af45be4dc4e5810fd7379e6f369935aac11f2a0
3 changes: 3 additions & 0 deletions docs/API_reference/doc_index/backends/epsilla.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# EpsillaDocumentIndex

::: docarray.index.backends.epsilla.EpsillaDocumentIndex
4 changes: 4 additions & 0 deletions docs/user_guide/storing/docindex.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Currently, DocArray supports the following vector databases:
- [Weaviate](https://weaviate.io/) | [Docs](index_weaviate.md)
- [Qdrant](https://qdrant.tech/) | [Docs](index_qdrant.md)
- [Elasticsearch](https://www.elastic.co/elasticsearch/) v7 and v8 | [Docs](index_elastic.md)
- [Epsilla](https://epsilla.com/) | [Docs](index_epsilla.md)
- [Redis](https://redis.com/) | [Docs](index_redis.md)
- [Milvus](https://milvus.io/) | [Docs](index_milvus.md)
- [HNSWlib](https://github.com/nmslib/hnswlib) | [Docs](index_hnswlib.md)
Expand Down Expand Up @@ -67,11 +68,13 @@ from docarray.index import InMemoryExactNNIndex
from docarray.typing import NdArray
import numpy as np


class MyDoc(BaseDoc):
title: str
price: int
embedding: NdArray[128]


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