Skip to content

Commit 5d4c588

Browse files
v0.14.1 (#19864)
1 parent a6e2af2 commit 5d4c588

File tree

8 files changed

+131
-31
lines changed

8 files changed

+131
-31
lines changed

CHANGELOG.md

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

3+
## [2025-09-14]
4+
5+
### `llama-index-core` [0.14.1]
6+
7+
- feat: add verbose option to RetrieverQueryEngine for detailed output (#19807)
8+
- feat: feat: add support for additional kwargs in `aget_text_embedding_batch` method (#19808)
9+
- feat: add `thinking_delta` field to AgentStream events to expose llm reasoning (#19785)
10+
- fix: Bug fix agent streaming thinking delta pydantic validation (#19828)
11+
- fix: handle positional args and kwargs both in tool calling (#19822)
12+
13+
### `llama-index-instrumentation` [0.4.1]
14+
15+
- feat: add sync event/handler support (#19825)
16+
17+
### `llama-index-llms-google-genai` [0.4.0]
18+
19+
- feat: Add VideoBlock and GoogleGenAI video input support (#19823)
20+
21+
### `llama-index-llms-ollama` [0.7.3]
22+
23+
- fix: Fix bug using Ollama with Agents and None tool_calls in final message (#19844)
24+
25+
### `llama-index-llms-vertex` [0.6.1]
26+
27+
- fix: align complete/acomplete responses (#19806)
28+
29+
### `llama-index-readers-confluence` [0.4.3]
30+
31+
- chore: Bump version constraint for atlassian-python-api to include 4.x (#19824)
32+
33+
### `llama-index-readers-github` [0.6.2]
34+
35+
- fix: Make url optional (#19851)
36+
37+
### `llama-index-readers-web` [0.5.3]
38+
39+
- feat: Add OlostepWebReader Integration (#19821)
40+
41+
### `llama-index-tools-google` [0.6.2]
42+
43+
- feat: Add optional creds argument to GoogleCalendarToolSpec (#19826)
44+
45+
### `llama-index-vector-stores-vectorx` [0.1.0]
46+
47+
- feat: Add vectorx vectorstore (#19758)
48+
349
## [2025-09-08]
450

551
**NOTE:** All packages have been bumped to handle the latest llama-index-core version.

docs/docs/CHANGELOG.md

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

3+
## [2025-09-14]
4+
5+
### `llama-index-core` [0.14.1]
6+
7+
- feat: add verbose option to RetrieverQueryEngine for detailed output (#19807)
8+
- feat: feat: add support for additional kwargs in `aget_text_embedding_batch` method (#19808)
9+
- feat: add `thinking_delta` field to AgentStream events to expose llm reasoning (#19785)
10+
- fix: Bug fix agent streaming thinking delta pydantic validation (#19828)
11+
- fix: handle positional args and kwargs both in tool calling (#19822)
12+
13+
### `llama-index-instrumentation` [0.4.1]
14+
15+
- feat: add sync event/handler support (#19825)
16+
17+
### `llama-index-llms-google-genai` [0.4.0]
18+
19+
- feat: Add VideoBlock and GoogleGenAI video input support (#19823)
20+
21+
### `llama-index-llms-ollama` [0.7.3]
22+
23+
- fix: Fix bug using Ollama with Agents and None tool_calls in final message (#19844)
24+
25+
### `llama-index-llms-vertex` [0.6.1]
26+
27+
- fix: align complete/acomplete responses (#19806)
28+
29+
### `llama-index-readers-confluence` [0.4.3]
30+
31+
- chore: Bump version constraint for atlassian-python-api to include 4.x (#19824)
32+
33+
### `llama-index-readers-github` [0.6.2]
34+
35+
- fix: Make url optional (#19851)
36+
37+
### `llama-index-readers-web` [0.5.3]
38+
39+
- feat: Add OlostepWebReader Integration (#19821)
40+
41+
### `llama-index-tools-google` [0.6.2]
42+
43+
- feat: Add optional creds argument to GoogleCalendarToolSpec (#19826)
44+
45+
### `llama-index-vector-stores-vectorx` [0.1.0]
46+
47+
- feat: Add vectorx vectorstore (#19758)
48+
349
## [2025-09-08]
450

551
**NOTE:** All packages have been bumped to handle the latest llama-index-core version.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.vector_stores.vectorx
2+
options:
3+
members:
4+
- VectorXVectorStore

docs/mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,6 +1693,7 @@ nav:
16931693
- ./api_reference/storage/vector_store/typesense.md
16941694
- ./api_reference/storage/vector_store/upstash.md
16951695
- ./api_reference/storage/vector_store/vearch.md
1696+
- ./api_reference/storage/vector_store/vectorx.md
16961697
- ./api_reference/storage/vector_store/vertexaivectorsearch.md
16971698
- ./api_reference/storage/vector_store/vespa.md
16981699
- ./api_reference/storage/vector_store/weaviate.md
@@ -2512,6 +2513,7 @@ plugins:
25122513
- ../llama-index-integrations/embeddings/llama-index-embeddings-baseten
25132514
- ../llama-index-integrations/llms/llama-index-llms-baseten
25142515
- ../llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb
2516+
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-vectorx
25152517
- redirects:
25162518
redirect_maps:
25172519
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md

llama-index-instrumentation/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dev = ["pytest>=8.4.0", "pytest-asyncio>=1.0.0", "pytest-cov>=6.1.1"]
77

88
[project]
99
name = "llama-index-instrumentation"
10-
version = "0.4.0"
10+
version = "0.4.1"
1111
description = "Add your description here"
1212
readme = "README.md"
1313
authors = [{name = "Massimiliano Pippi", email = "[email protected]"}]

llama-index-integrations/llms/llama-index-llms-google-genai/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dev = [
2727

2828
[project]
2929
name = "llama-index-llms-google-genai"
30-
version = "0.3.1"
30+
version = "0.4.0"
3131
description = "llama-index llms google genai integration"
3232
authors = [{name = "Your Name", email = "[email protected]"}]
3333
requires-python = ">=3.9,<4.0"
@@ -36,7 +36,7 @@ license = "MIT"
3636
dependencies = [
3737
"pillow>=10.2.0",
3838
"google-genai>=1.24.0,<2",
39-
"llama-index-core>=0.13.0,<0.15",
39+
"llama-index-core>=0.14.1,<0.15",
4040
]
4141

4242
[tool.codespell]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ classifiers = [
4040
]
4141
dependencies = [
4242
"llama-index-cli>=0.5.0,<0.6",
43-
"llama-index-core>=0.13.6,<0.15",
43+
"llama-index-core>=0.14.1,<0.15",
4444
"llama-index-embeddings-openai>=0.5.0,<0.6",
4545
"llama-index-indices-managed-llama-cloud>=0.4.0",
4646
"llama-index-llms-openai>=0.5.0,<0.6",
@@ -70,7 +70,7 @@ maintainers = [
7070
name = "llama-index"
7171
readme = "README.md"
7272
requires-python = ">=3.9,<4.0"
73-
version = "0.14.0"
73+
version = "0.14.1"
7474

7575
[project.scripts]
7676
llamaindex-cli = "llama_index.cli.command_line:main"

uv.lock

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

0 commit comments

Comments
 (0)