Skip to content

Commit

Permalink
v0.12.5 (#17213)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Dec 9, 2024
1 parent 2cf383f commit ae18106
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 20 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# ChangeLog

## [2024-12-09]

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

- Refined the default description generation for function tools (#17208)

### `llama-index-multi-modal-llms-azure-openai` [0.3.2]

- fix: relax pin on openai llm dependency (#17210)

### `llama-index-postprocessor-pinecone-native-rerank` [0.1.0]

- feat: integration on pinecone hosted rerankers (#17192)

### `llama-index-vector-stores-postgres` [0.3.3]

- Update pgvector dependency to version 0.3.6 (#17195)

## [2024-12-08]

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

## [2024-12-09]

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

- Refined the default description generation for function tools (#17208)

### `llama-index-multi-modal-llms-azure-openai` [0.3.2]

- fix: relax pin on openai llm dependency (#17210)

### `llama-index-postprocessor-pinecone-native-rerank` [0.1.0]

- feat: integration on pinecone hosted rerankers (#17192)

### `llama-index-vector-stores-postgres` [0.3.3]

- Update pgvector dependency to version 0.3.6 (#17195)

## [2024-12-08]

### `llama-index-core` [0.12.4]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.postprocessor.pinecone_native_rerank
options:
members:
- PineconeNativeRerank
2 changes: 2 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,7 @@ nav:
- ./api_reference/postprocessor/mixedbreadai_rerank.md
- ./api_reference/postprocessor/nvidia_rerank.md
- ./api_reference/postprocessor/openvino_rerank.md
- ./api_reference/postprocessor/pinecone_native_rerank.md
- ./api_reference/postprocessor/presidio.md
- ./api_reference/postprocessor/prev_next.md
- ./api_reference/postprocessor/rankgpt_rerank.md
Expand Down Expand Up @@ -2339,6 +2340,7 @@ plugins:
- ../llama-index-integrations/tools/llama-index-tools-elevenlabs
- ../llama-index-integrations/llms/llama-index-llms-nebius
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-bedrock-rerank
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-pinecone-native-rerank
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
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.4"
__version__ = "0.12.5"

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.4"
version = "0.12.5"

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

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

6 changes: 3 additions & 3 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.4"
version = "0.12.5"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand All @@ -58,8 +58,8 @@ 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.4"
llama-index-multi-modal-llms-openai = "^0.3.0"
llama-index-core = "^0.12.5"
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 ae18106

Please sign in to comment.