Skip to content

Commit

Permalink
v0.11.1 (#15599)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Aug 23, 2024
1 parent 1a26031 commit eecc1bc
Show file tree
Hide file tree
Showing 11 changed files with 216 additions and 42 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# ChangeLog

## [2024-08-23]

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

- Replacing client-side docs search with algolia (#15574)
- Add docs on extending workflows (#15573)
- rename method for nested workflows to add_workflows (#15596)
- chore: fix @step usage in the core codebase (#15588)
- Modify the validate function in ReflectionWorkflow example notebook to use pydantic model_validate_json method (#15567)
- feature: allow concurrent runs of the same workflow instance (#15568)
- docs: remove redundant pass_context=True from docs and examples (#15571)

### `llama-index-embeddings-openai` [0.2.3]

- fix openai embeddings with pydantic v2 (#15576)

### `llama-index-embeddings-voyageai` [0.2.1]

- bump voyage ai embedding client dep (#15595)

### `llama-index-llms-vertex` [0.3.3]

- Vertex LLM: Correctly add function calling part to prompt (#15569)
- Vertex LLM: Remove manual setting of message content to Function Calling (#15586)

## [2024-08-22]

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

## [2024-08-23]

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

- Replacing client-side docs search with algolia (#15574)
- Add docs on extending workflows (#15573)
- rename method for nested workflows to add_workflows (#15596)
- chore: fix @step usage in the core codebase (#15588)
- Modify the validate function in ReflectionWorkflow example notebook to use pydantic model_validate_json method (#15567)
- feature: allow concurrent runs of the same workflow instance (#15568)
- docs: remove redundant pass_context=True from docs and examples (#15571)

### `llama-index-embeddings-openai` [0.2.3]

- fix openai embeddings with pydantic v2 (#15576)

### `llama-index-embeddings-voyageai` [0.2.1]

- bump voyage ai embedding client dep (#15595)

### `llama-index-llms-vertex` [0.3.3]

- Vertex LLM: Correctly add function calling part to prompt (#15569)
- Vertex LLM: Remove manual setting of message content to Function Calling (#15586)

## [2024-08-22]

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

- removed deprecated `ServiceContext` -- using this now will print an error with a link to the migration guide
- removed deprecated `LLMPredictor` -- using this now will print an error, any existing LLM is a drop-in replacement
- made `pandas` an optional dependency

### `Everything Else`

- bumped the minor version of every package to account for the new version of `llama-index-core`

## [2024-08-21]

### `llama-index-core` [0.10.68]
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.11.0"
__version__ = "0.11.1"

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 @@ -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.11.0.post1"
version = "0.11.1"

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

This file was deleted.

Empty file.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class LanceDBVectorStore(BasePydanticVectorStore):
```
"""

stores_text = True
stores_text: bool = True
flat_metadata: bool = True
uri: Optional[str]
vector_column_name: Optional[str]
Expand Down Expand Up @@ -193,6 +193,8 @@ def __init__(
mode=mode,
query_type=query_type,
overfetch_factor=overfetch_factor,
api_key=api_key,
region=region,
**kwargs,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-lancedb"
readme = "README.md"
version = "0.2.1"
version = "0.2.2"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down
174 changes: 146 additions & 28 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 @@ -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.11.0"
version = "0.11.1"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.3.0"
llama-index-readers-file = "^0.2.0"
llama-index-readers-llama-parse = ">=0.2.0"
llama-index-indices-managed-llama-cloud = ">=0.3.0"
llama-index-core = "0.11.0.post1"
llama-index-core = "^0.11.1"
llama-index-multi-modal-llms-openai = "^0.2.0"
llama-index-cli = "^0.3.0"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down

0 comments on commit eecc1bc

Please sign in to comment.