Skip to content

Commit

Permalink
v0.12.14 (#17632)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jan 25, 2025
1 parent e0c04cf commit 9f9ead1
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 24 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# ChangeLog

## [2025-01-25]

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

- Fix agentworkflow handoffs for non-openai llms (#17631)
- small fixes to the multi-agent workflow demo notebook (#17628)

### `llama-index-embeddings-bedrock` [0.5.0]

- Implement async bedrock embeddings (#17610)

### `llama-index-llms-bedrock-converse` [0.4.4]

- Fix prompt stacking in bedrock converse (#17613)

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

- DeepSeek official API LLM (#17625)

### `llama-index-readers-google` [0.6.0]

- GoogleDriveReader support file extensions (#17620)

## [2025-01-23]

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

## [2025-01-25]

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

- Fix agentworkflow handoffs for non-openai llms (#17631)
- small fixes to the multi-agent workflow demo notebook (#17628)

### `llama-index-embeddings-bedrock` [0.5.0]

- Implement async bedrock embeddings (#17610)

### `llama-index-llms-bedrock-converse` [0.4.4]

- Fix prompt stacking in bedrock converse (#17613)

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

- DeepSeek official API LLM (#17625)

### `llama-index-readers-google` [0.6.0]

- GoogleDriveReader support file extensions (#17620)

## [2025-01-23]

### `llama-index-core` [0.12.13]
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.12.13"
__version__ = "0.12.14"

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.12.13"
version = "0.12.14"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.12.13"
version = "0.12.14"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.4.0"
llama-index-readers-file = "^0.4.0"
llama-index-readers-llama-parse = ">=0.4.0"
llama-index-indices-managed-llama-cloud = ">=0.4.0"
llama-index-core = "^0.12.13"
llama-index-core = "^0.12.14"
llama-index-multi-modal-llms-openai = "^0.4.0"
llama-index-cli = "^0.4.0"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down

0 comments on commit 9f9ead1

Please sign in to comment.