Skip to content

Commit

Permalink
v0.10.58 (#14944)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jul 24, 2024
1 parent f2a64e5 commit d94e0b0
Show file tree
Hide file tree
Showing 9 changed files with 236 additions and 138 deletions.
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
# ChangeLog

## [2024-07-24]

### `llama-index-core` [0.10.58]

- Fix: Token counter expecting response.raw as dict, got ChatCompletionChunk (#14937)
- Return proper tool outputs per agent step instead of all (#14885)
- Minor bug fixes to async structured streaming (#14925)

### `llama-index-llms-fireworks` [0.1.6]

- fireworks ai llama3.1 support (#14914)

### `llama-index-multi-modal-llms-anthropic` [0.1.6]

- Add claude 3.5 sonnet to multi modal llms (#14932)

### `llama-index-retrievers-bm25` [0.2.1]

- 🐞 fix(integrations): BM25Retriever persist missing arg similarity_top_k (#14933)

### `llama-index-retrievers-vertexai-search` [0.1.0]

- Llamaindex retriever for Vertex AI Search (#14913)

### `llama-index-vector-stores-deeplake` [0.1.5]

- Improved `deeplake.get_nodes()` performance (#14920)

### `llama-index-vector-stores-elasticsearch` [0.2.3]

- Bugfix: Don't pass empty list of embeddings to elasticsearch store when using sparse strategy (#14918)

### `llama-index-vector-stores-lindorm` [0.1.0]

- Add vector store integration of lindorm (#14623)

### `llama-index-vector-stores-qdrant` [0.2.14]

- feat: allow to limit how many elements retrieve (qdrant) (#14904)

## [2024-07-22]

### `llama-index-core` [v0.10.57]
### `llama-index-core` [0.10.57]

- Add an optional parameter similarity_score to VectorContextRetrieve… (#14831)
- add property extraction (using property names and optional descriptions) for KGs (#14707)
Expand Down
42 changes: 41 additions & 1 deletion docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,48 @@
# ChangeLog

## [2024-07-24]

### `llama-index-core` [0.10.58]

- Fix: Token counter expecting response.raw as dict, got ChatCompletionChunk (#14937)
- Return proper tool outputs per agent step instead of all (#14885)
- Minor bug fixes to async structured streaming (#14925)

### `llama-index-llms-fireworks` [0.1.6]

- fireworks ai llama3.1 support (#14914)

### `llama-index-multi-modal-llms-anthropic` [0.1.6]

- Add claude 3.5 sonnet to multi modal llms (#14932)

### `llama-index-retrievers-bm25` [0.2.1]

- 🐞 fix(integrations): BM25Retriever persist missing arg similarity_top_k (#14933)

### `llama-index-retrievers-vertexai-search` [0.1.0]

- Llamaindex retriever for Vertex AI Search (#14913)

### `llama-index-vector-stores-deeplake` [0.1.5]

- Improved `deeplake.get_nodes()` performance (#14920)

### `llama-index-vector-stores-elasticsearch` [0.2.3]

- Bugfix: Don't pass empty list of embeddings to elasticsearch store when using sparse strategy (#14918)

### `llama-index-vector-stores-lindorm` [0.1.0]

- Add vector store integration of lindorm (#14623)

### `llama-index-vector-stores-qdrant` [0.2.14]

- feat: allow to limit how many elements retrieve (qdrant) (#14904)

## [2024-07-22]

### `llama-index-core` [v0.10.57]
### `llama-index-core` [0.10.57]

- Add an optional parameter similarity_score to VectorContextRetrieve… (#14831)
- add property extraction (using property names and optional descriptions) for KGs (#14707)
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/retrievers/vertexai_search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.retrievers.vertexai_search
options:
members:
- VertexAISearchRetriever
4 changes: 4 additions & 0 deletions docs/docs/api_reference/storage/vector_store/lindorm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.vector_stores.lindorm
options:
members:
- LindormVectorStore
6 changes: 6 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ nav:
- ./examples/retrievers/router_retriever.ipynb
- ./examples/retrievers/simple_fusion.ipynb
- ./examples/retrievers/vectara_auto_retriever.ipynb
- ./examples/retrievers/vertex_ai_search_retriever.ipynb
- ./examples/retrievers/videodb_retriever.ipynb
- ./examples/retrievers/you_retriever.ipynb
- Tools:
Expand Down Expand Up @@ -574,6 +575,7 @@ nav:
- ./examples/vector_stores/LanceDBIndexDemo.ipynb
- ./examples/vector_stores/LanternAutoRetriever.ipynb
- ./examples/vector_stores/LanternIndexDemo.ipynb
- ./examples/vector_stores/LindormDemo.ipynb
- ./examples/vector_stores/MetalIndexDemo.ipynb
- ./examples/vector_stores/MilvusHybridIndexDemo.ipynb
- ./examples/vector_stores/MilvusIndexDemo.ipynb
Expand Down Expand Up @@ -1320,6 +1322,7 @@ nav:
- ./api_reference/retrievers/transform.md
- ./api_reference/retrievers/tree.md
- ./api_reference/retrievers/vector.md
- ./api_reference/retrievers/vertexai_search.md
- ./api_reference/retrievers/videodb.md
- ./api_reference/retrievers/you.md
- Schema:
Expand Down Expand Up @@ -1404,6 +1407,7 @@ nav:
- ./api_reference/storage/vector_store/kdbai.md
- ./api_reference/storage/vector_store/lancedb.md
- ./api_reference/storage/vector_store/lantern.md
- ./api_reference/storage/vector_store/lindorm.md
- ./api_reference/storage/vector_store/metal.md
- ./api_reference/storage/vector_store/milvus.md
- ./api_reference/storage/vector_store/mongodb.md
Expand Down Expand Up @@ -2060,6 +2064,8 @@ plugins:
- ../llama-index-integrations/embeddings/llama-index-embeddings-yandexgpt
- ../llama-index-integrations/readers/llama-index-readers-box
- ../llama-index-integrations/llms/llama-index-llms-azure-inference
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-lindorm
- ../llama-index-integrations/retrievers/llama-index-retrievers-vertexai-search
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/llama_index/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Init file of LlamaIndex."""

__version__ = "0.10.57"
__version__ = "0.10.58"

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.57"
version = "0.10.58"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Loading

0 comments on commit d94e0b0

Please sign in to comment.