Skip to content

Commit

Permalink
v0.11.17 (#16436)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Oct 9, 2024
1 parent 55c50a2 commit 65946eb
Show file tree
Hide file tree
Showing 6 changed files with 492 additions and 282 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# ChangeLog

## [2024-10-08]

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

- Fix ChatMessage serialization with janky openai types (#16410)

### `llama-index-embeddings-gemini` [0.2.1]

- fix gemini embedding async method (#16369)

### `llama-index-llms-gaudi` [0.1.0]

- Add llm integration with Intel Gaudi in llama-index-llms-gaudi (#16308)

### `llama-index-llms-openai` [0.2.12]

- don't include tool calls if there was none (#16408)

### `llama-index-multi-modal-llms-huggingface` [0.1.1]

- LlamaMultiModal class bug fix (#16413)
- MultiModal.HuggingFaceMultiModal: fix errors and README, add stream_complete (#16376)

### `llama-index-node-parser-docling` [0.1.0]

- feat: add Docling reader and node parser (#16406)

### `llama-index-readers-docling` [0.1.0]

- feat: add Docling reader and node parser (#16406)

### `llama-index-readers-zyte-serp` [0.1.0]

- Add Zyte serp integration (#16417)

### `llama-index-vector-stores-azureaisearch` [0.2.2]

- fix(bug): fixed bug with ensuring the metadata_mapping value (#16431)

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

- Add ObjectBox Vector Store Integration (#16314)

## [2024-10-03]

### `llama-index-core` [0.11.16]
Expand Down
43 changes: 43 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# ChangeLog

## [2024-10-08]

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

- Fix ChatMessage serialization with janky openai types (#16410)

### `llama-index-embeddings-gemini` [0.2.1]

- fix gemini embedding async method (#16369)

### `llama-index-llms-gaudi` [0.1.0]

- Add llm integration with Intel Gaudi in llama-index-llms-gaudi (#16308)

### `llama-index-llms-openai` [0.2.12]

- don't include tool calls if there was none (#16408)

### `llama-index-multi-modal-llms-huggingface` [0.1.1]

- LlamaMultiModal class bug fix (#16413)
- MultiModal.HuggingFaceMultiModal: fix errors and README, add stream_complete (#16376)

### `llama-index-node-parser-docling` [0.1.0]

- feat: add Docling reader and node parser (#16406)

### `llama-index-readers-docling` [0.1.0]

- feat: add Docling reader and node parser (#16406)

### `llama-index-readers-zyte-serp` [0.1.0]

- Add Zyte serp integration (#16417)

### `llama-index-vector-stores-azureaisearch` [0.2.2]

- fix(bug): fixed bug with ensuring the metadata_mapping value (#16431)

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

- Add ObjectBox Vector Store Integration (#16314)

## [2024-10-03]

### `llama-index-core` [0.11.16]
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.11.16"
__version__ = "0.11.17"

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 @@ -46,7 +46,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.11.16"
version = "0.11.17"

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

0 comments on commit 65946eb

Please sign in to comment.