Skip to content

Commit ae18106

Browse files
v0.12.5 (run-llama#17213)
1 parent 2cf383f commit ae18106

File tree

8 files changed

+62
-20
lines changed

8 files changed

+62
-20
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# ChangeLog
22

3+
## [2024-12-09]
4+
5+
### `llama-index-core` [0.12.5]
6+
7+
- Refined the default description generation for function tools (#17208)
8+
9+
### `llama-index-multi-modal-llms-azure-openai` [0.3.2]
10+
11+
- fix: relax pin on openai llm dependency (#17210)
12+
13+
### `llama-index-postprocessor-pinecone-native-rerank` [0.1.0]
14+
15+
- feat: integration on pinecone hosted rerankers (#17192)
16+
17+
### `llama-index-vector-stores-postgres` [0.3.3]
18+
19+
- Update pgvector dependency to version 0.3.6 (#17195)
20+
321
## [2024-12-08]
422

523
### `llama-index-core` [0.12.4]

docs/docs/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# ChangeLog
22

3+
## [2024-12-09]
4+
5+
### `llama-index-core` [0.12.5]
6+
7+
- Refined the default description generation for function tools (#17208)
8+
9+
### `llama-index-multi-modal-llms-azure-openai` [0.3.2]
10+
11+
- fix: relax pin on openai llm dependency (#17210)
12+
13+
### `llama-index-postprocessor-pinecone-native-rerank` [0.1.0]
14+
15+
- feat: integration on pinecone hosted rerankers (#17192)
16+
17+
### `llama-index-vector-stores-postgres` [0.3.3]
18+
19+
- Update pgvector dependency to version 0.3.6 (#17195)
20+
321
## [2024-12-08]
422

523
### `llama-index-core` [0.12.4]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.postprocessor.pinecone_native_rerank
2+
options:
3+
members:
4+
- PineconeNativeRerank

docs/mkdocs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,7 @@ nav:
12161216
- ./api_reference/postprocessor/mixedbreadai_rerank.md
12171217
- ./api_reference/postprocessor/nvidia_rerank.md
12181218
- ./api_reference/postprocessor/openvino_rerank.md
1219+
- ./api_reference/postprocessor/pinecone_native_rerank.md
12191220
- ./api_reference/postprocessor/presidio.md
12201221
- ./api_reference/postprocessor/prev_next.md
12211222
- ./api_reference/postprocessor/rankgpt_rerank.md
@@ -2339,6 +2340,7 @@ plugins:
23392340
- ../llama-index-integrations/tools/llama-index-tools-elevenlabs
23402341
- ../llama-index-integrations/llms/llama-index-llms-nebius
23412342
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-bedrock-rerank
2343+
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-pinecone-native-rerank
23422344
- redirects:
23432345
redirect_maps:
23442346
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.12.4"
3+
__version__ = "0.12.5"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

+1-1
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.4"
49+
version = "0.12.5"
5050

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

poetry.lock

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
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.4"
48+
version = "0.12.5"
4949

5050
[tool.poetry.dependencies]
5151
python = ">=3.9,<4.0"
@@ -58,8 +58,8 @@ llama-index-agent-openai = "^0.4.0"
5858
llama-index-readers-file = "^0.4.0"
5959
llama-index-readers-llama-parse = ">=0.4.0"
6060
llama-index-indices-managed-llama-cloud = ">=0.4.0"
61-
llama-index-core = "^0.12.4"
62-
llama-index-multi-modal-llms-openai = "^0.3.0"
61+
llama-index-core = "^0.12.5"
62+
llama-index-multi-modal-llms-openai = "^0.4.0"
6363
llama-index-cli = "^0.4.0"
6464
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
6565

0 commit comments

Comments
 (0)