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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,17 @@ match = store.find(
match = store.find(Image(embedding=np.zeros((128,))), field='text__embedding', top_k=10)
```

## Install the alpha

to try out the alpha you can install it via git:
```shell
pip install "git+https://github.com/docarray/[email protected]#egg=docarray[common,torch,image]"
```
or from the latest development branch
```shell
pip install "git+https://github.com/docarray/docarray@feat-rewrite-v2#egg=docarray[common,torch,image]"
```

## Further reading

- [V2 announcement blog post](https://github.com/docarray/notes/blob/main/blog/01-announcement.md)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "docarray"
version = '0.1.0'
version = '2022.11.29.alpha'
description='The data structure for unstructured data'
authors=['Jina AI']
authors=['DocArray']
license='Apache 2.0'

[tool.poetry.dependencies]
Expand Down