Skip to content

Commit

Permalink
v0.12.4 (#17198)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Dec 8, 2024
1 parent 6eb53bc commit 37b3403
Show file tree
Hide file tree
Showing 9 changed files with 190 additions and 124 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# ChangeLog

## [2024-12-08]

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

- Fix sync and async structured streaming (#17194)
- unpin pydantic to allow 2.8 or greater (#17193)
- Update core structured predict streaming, add ollama structured predict (#17188)
- bump tenacity dependency in llama-index-core (#17178)

### `llama-index-indices-managed-vectara` [0.3.1]

- Add Verbose to Vectara `as_query_engine` (#17176)

### `llama-index-llms-ollama` [0.5.0]

- Update core structured predict streaming, add ollama structured predict (#17188)

### `llama-index-llms-perplexity` [0.3.2]

- Fix message format for perplexity (#17182)

### `llama-index-readers-web` [0.3.1]

- Add possibility to use URI as doc id in WholeSiteReader (#17187)

### `llama-index-vector-stores-chroma` [0.4.1]

- BUG FIX: llama-index-vectorstore-chromadb to work with chromadb v0.5.17 (#17184)

## [2024-12-06]

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

## [2024-12-08]

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

- Fix sync and async structured streaming (#17194)
- unpin pydantic to allow 2.8 or greater (#17193)
- Update core structured predict streaming, add ollama structured predict (#17188)
- bump tenacity dependency in llama-index-core (#17178)

### `llama-index-indices-managed-vectara` [0.3.1]

- Add Verbose to Vectara `as_query_engine` (#17176)

### `llama-index-llms-ollama` [0.5.0]

- Update core structured predict streaming, add ollama structured predict (#17188)

### `llama-index-llms-perplexity` [0.3.2]

- Fix message format for perplexity (#17182)

### `llama-index-readers-web` [0.3.1]

- Add possibility to use URI as doc id in WholeSiteReader (#17187)

### `llama-index-vector-stores-chroma` [0.4.1]

- BUG FIX: llama-index-vectorstore-chromadb to work with chromadb v0.5.17 (#17184)

## [2024-12-06]

### `llama-index-core` [0.12.3]
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.3"
__version__ = "0.12.4"

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.3"
version = "0.12.4"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-embeddings-ollama"
readme = "README.md"
version = "0.4.0"
version = "0.5.0"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
ollama = "^0.3.1"
ollama = ">=0.3.1"
llama-index-core = "^0.12.0"

[tool.poetry.group.dev.dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-ollama"
readme = "README.md"
version = "0.4.2"
version = "0.5.0"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
ollama = ">=0.3.0"
llama-index-core = "^0.12.0"
ollama = ">=0.4.3"
llama-index-core = "^0.12.4"

[tool.poetry.group.dev.dependencies]
ipython = "8.10.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-openai"
readme = "README.md"
version = "0.3.2"
version = "0.3.3"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
openai = "^1.40.0"
llama-index-core = "^0.12.0"
llama-index-core = "^0.12.4"

[tool.poetry.group.dev.dependencies]
ipython = "8.10.0"
Expand Down
234 changes: 121 additions & 113 deletions poetry.lock

Large diffs are not rendered by default.

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.3"
version = "0.12.4"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand All @@ -58,7 +58,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.3"
llama-index-core = "^0.12.4"
llama-index-multi-modal-llms-openai = "^0.3.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 37b3403

Please sign in to comment.