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
2 changes: 1 addition & 1 deletion docs/advanced/document-store/annlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
One can use [Annlite](https://github.com/jina-ai/annlite) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`.

````{tip}
This feature requires `annlite`. You can install it via `pip install "docarray[full]".`
This feature requires `annlite`. You can install it via `pip install "docarray[annlite]".`
````


Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/document-store/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
One can use [Elasticsearch](https://www.elastic.co) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`.

````{tip}
This feature requires `elasticsearch`. You can install it via `pip install "docarray[full]".`
This feature requires `elasticsearch`. You can install it via `pip install "docarray[elasticsearch]".`
````

## Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/document-store/qdrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
One can use [Qdrant](https://qdrant.tech) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`.

````{tip}
This feature requires `qdrant-client`. You can install it via `pip install "docarray[full]".`
This feature requires `qdrant-client`. You can install it via `pip install "docarray[qdrant]".`
````

## Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/document-store/weaviate.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
One can use [Weaviate](https://www.semi.technology) as the document store for DocumentArray. It is useful when one wants to have faster Document retrieval on embeddings, i.e. `.match()`, `.find()`.

````{tip}
This feature requires `weaviate-client`. You can install it via `pip install "docarray[full]".`
This feature requires `weaviate-client`. You can install it via `pip install "docarray[weaviate]".`
````

Here is a video tutorial that guides you to build a simple image search using Weaviate and Docarray.
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,24 @@
'av',
'fastapi',
'uvicorn',
'strawberry-graphql',
'weaviate-client~=3.3.0',
'annlite>=0.3.0',
'qdrant-client~=0.7.1',
'strawberry-graphql',
'elasticsearch>=8.0.1',
],
'qdrant': [
'qdrant-client~=0.7.0',
'qdrant-client~=0.7.1',
],
'annlite': [
'annlite>=0.3.0',
],
'weaviate': [
'weaviate-client~=3.3.0',
],
'elasticsearch': [
'elasticsearch>=8.0.1',
],
'test': [
'pytest',
'pytest-timeout',
Expand All @@ -95,6 +101,7 @@
'transformers>=4.16.2',
'weaviate-client~=3.3.0',
'annlite>=0.3.0',
'elasticsearch>=8.0.1',
'jina',
],
},
Expand Down