Skip to content

Commit

Permalink
clog and vbumps
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai committed Apr 28, 2024
1 parent 978e43d commit 702bdba
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 5 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,43 @@
# ChangeLog

## [2024-04-27]

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

- add agent_worker.as_agent() (#13061)

### `llama-index-embeddings-bedrock` [0.1.5]

- Use Bedrock cohere character limit (#13126)

### `llama-index-tools-google` [0.1.5]

- Change default value for attendees to empty list (#13134)

### `llama-index-graph-stores-falkordb` [0.1.4]

- Skip index creation error when index already exists (#13085)

### `llama-index-tools-google` [0.1.4]

- Fix datetime for google calendar create_event api (#13132)

### `llama-index-llms-anthropic` [0.1.11]

- Merge multiple prompts into one (#13131)

### `llama-index-indices-managed-llama-cloud` [0.1.6]

- Use MetadataFilters in LlamaCloud Retriever (#13117)

### `llama-index-graph-stores-kuzu` [0.1.3]

- Fix kuzu integration .execute() calls (#13100)

### `llama-index-vector-stores-lantern` [0.1.3]

- Maintenance update to keep up to date with lantern builds (#13116)

## [2024-04-25]

### `llama-index-core` [0.10.32]
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/llama_index/core/__init__.py
@@ -1,6 +1,6 @@
"""Init file of LlamaIndex."""

__version__ = "0.10.32"
__version__ = "0.10.33"

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/pyproject.toml
Expand Up @@ -43,7 +43,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.32"
version = "0.10.33"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-embeddings-bedrock"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Expand Up @@ -31,7 +31,7 @@ license = "MIT"
maintainers = ["ajhofmann"]
name = "llama-index-tools-google"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -44,7 +44,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.32"
version = "0.10.33"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down

0 comments on commit 702bdba

Please sign in to comment.