Skip to content

Commit 60bbe9e

Browse files
v0.12.32 (#18499)
1 parent 428f823 commit 60bbe9e

File tree

8 files changed

+55
-112
lines changed

8 files changed

+55
-112
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# ChangeLog
22

3+
## [2025-04-21]
4+
5+
### `llama-index-core` [0.12.32]
6+
7+
- Fix media resource serialization (#18496)
8+
- fix react agent prompt updates (#18494)
9+
10+
### `llama-index-indices-managed-vectara` [0.4.4]
11+
12+
- Close "session" in VectaraIndex on GC (#18484)
13+
14+
### `llama-index-llms-openai` [0.3.38]
15+
16+
- allow content blocks in openai assistant messages (#18495)
17+
18+
### `llama-index-llms-openvino-genai` [0.1.1]
19+
20+
- fix the openvino llm initialize issue (#18481)
21+
22+
### `llama-index-vector-stores-milvus` [0.8.0]
23+
24+
- MilvusVectorStore: BM25 as default sparse embedding function (#18460)
25+
326
## [2025-04-16]
427

528
### `llama-index-core` [0.12.31]

docs/docs/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# ChangeLog
22

3+
## [2025-04-21]
4+
5+
### `llama-index-core` [0.12.32]
6+
7+
- Fix media resource serialization (#18496)
8+
- fix react agent prompt updates (#18494)
9+
10+
### `llama-index-indices-managed-vectara` [0.4.4]
11+
12+
- Close "session" in VectaraIndex on GC (#18484)
13+
14+
### `llama-index-llms-openai` [0.3.38]
15+
16+
- allow content blocks in openai assistant messages (#18495)
17+
18+
### `llama-index-llms-openvino-genai` [0.1.1]
19+
20+
- fix the openvino llm initialize issue (#18481)
21+
22+
### `llama-index-vector-stores-milvus` [0.8.0]
23+
24+
- MilvusVectorStore: BM25 as default sparse embedding function (#18460)
25+
326
## [2025-04-16]
427

528
### `llama-index-core` [0.12.31]

docs/docs/understanding/agent/rag_agent.md

Lines changed: 0 additions & 104 deletions
This file was deleted.

docs/mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3060,6 +3060,7 @@ plugins:
30603060
./presentations/past_presentations.html: https://docs.llamaindex.ai/en/stable/presentations/past_presentations/
30613061
./understanding/agent/basic_agent/index.html: https://docs.llamaindex.ai/en/stable/understanding/agent/
30623062
./understanding/agent/multi_agents/index.html: https://docs.llamaindex.ai/en/stable/understanding/agent/multi_agent/
3063+
./understanding/agent/rag_agent.html: https://docs.llamaindex.ai/en/stable/understanding/agent/
30633064
./understanding/deployment/deployment.html: https://docs.llamaindex.ai/en/stable/understanding/deployment/deployment/
30643065
./understanding/evaluating/cost_analysis/root.html: understanding/evaluating/cost_analysis/index.md
30653066
./understanding/evaluating/cost_analysis/usage_pattern.html: https://docs.llamaindex.ai/en/stable/understanding/evaluating/cost_analysis/usage_pattern/

llama-index-core/llama_index/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.12.31"
3+
__version__ = "0.12.32"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ name = "llama-index-core"
4646
packages = [{include = "llama_index"}]
4747
readme = "README.md"
4848
repository = "https://github.com/run-llama/llama_index"
49-
version = "0.12.31"
49+
version = "0.12.32"
5050

5151
[tool.poetry.dependencies]
5252
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ name = "llama-index"
4545
packages = [{from = "_llama-index", include = "llama_index"}]
4646
readme = "README.md"
4747
repository = "https://github.com/run-llama/llama_index"
48-
version = "0.12.31"
48+
version = "0.12.32"
4949

5050
[tool.poetry.dependencies]
5151
python = ">=3.9,<4.0"
@@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.4.0"
5757
llama-index-readers-file = "^0.4.0"
5858
llama-index-readers-llama-parse = ">=0.4.0"
5959
llama-index-indices-managed-llama-cloud = ">=0.4.0"
60-
llama-index-core = "^0.12.31"
60+
llama-index-core = "^0.12.32"
6161
llama-index-multi-modal-llms-openai = "^0.4.0"
6262
llama-index-cli = "^0.4.1"
6363
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core

0 commit comments

Comments
 (0)