Skip to content

Commit

Permalink
v0.11.8 (#15933)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Sep 10, 2024
1 parent 310ba4e commit 5cb6755
Show file tree
Hide file tree
Showing 13 changed files with 434 additions and 330 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
# ChangeLog

## [2024-09-09]

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

- feat: Add a retry policy config to workflow steps (#15757)
- Add doc id to Langchain format conversions (#15928)

### `llama-index-chat-store-dynamodb` [0.1.0]

- Add DynamoDBChatStore (#15917)

### `llama-index-cli` [0.3.1]

- Fix RagCLI pydantic error (#15931)

### `llama-index-llms-alibabacloud-aisearch` [0.1.0]

- add llama-index llms alibabacloud_aisearch integration (#15850)

### `llama-index-llms-mistralai` [0.2.3]

- Make default mistral model support function calling with `large-latest` (#15906)

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

- Add InternalServerError to retry decorator (#15921)

### `llama-index-postprocessor-rankllm-rerank` [0.3.0]

- Update RankLLM with new rerankers (#15892)

### `llama-index-vector-stores-azurecosmosnosql` [1.0.0]

- Adding vector store for Azure Cosmos DB NoSql (#14158)

### `llama-index-readers-microsoft-sharepoint` [0.3.1]

- Fix error handling in sharepoint reader, fix error with download file (#15868)

### `llama-index-vector-stores-wordlift` [0.4.4]

- Adding support for MetadataFilters to WordLift Vector Store (#15905)

### `llama-index-vector-stores-opensearch` [0.2.2]

- Opensearch Serverless filtered query support using knn_score script (#15899)

## [2024-09-06]

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

## [2024-09-09]

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

- feat: Add a retry policy config to workflow steps (#15757)
- Add doc id to Langchain format conversions (#15928)

### `llama-index-chat-store-dynamodb` [0.1.0]

- Add DynamoDBChatStore (#15917)

### `llama-index-cli` [0.3.1]

- Fix RagCLI pydantic error (#15931)

### `llama-index-llms-alibabacloud-aisearch` [0.1.0]

- add llama-index llms alibabacloud_aisearch integration (#15850)

### `llama-index-llms-mistralai` [0.2.3]

- Make default mistral model support function calling with `large-latest` (#15906)

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

- Add InternalServerError to retry decorator (#15921)

### `llama-index-postprocessor-rankllm-rerank` [0.3.0]

- Update RankLLM with new rerankers (#15892)

### `llama-index-vector-stores-azurecosmosnosql` [1.0.0]

- Adding vector store for Azure Cosmos DB NoSql (#14158)

### `llama-index-readers-microsoft-sharepoint` [0.3.1]

- Fix error handling in sharepoint reader, fix error with download file (#15868)

### `llama-index-vector-stores-wordlift` [0.4.4]

- Adding support for MetadataFilters to WordLift Vector Store (#15905)

### `llama-index-vector-stores-opensearch` [0.2.2]

- Opensearch Serverless filtered query support using knn_score script (#15899)

## [2024-09-06]

### `llama-index-core` [0.11.7]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.vector_stores.azurecosmosnosql
options:
members:
- AzureCosmosDBMongoDBVectorSearch
3 changes: 3 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ nav:
- ./examples/vector_stores/AwadbDemo.ipynb
- ./examples/vector_stores/AzureAISearchIndexDemo.ipynb
- ./examples/vector_stores/AzureCosmosDBMongoDBvCoreDemo.ipynb
- ./examples/vector_stores/AzureCosmosDBNoSqlDemo.ipynb
- ./examples/vector_stores/BagelAutoRetriever.ipynb
- ./examples/vector_stores/BagelIndexDemo.ipynb
- ./examples/vector_stores/BaiduVectorDBIndexDemo.ipynb
Expand Down Expand Up @@ -1456,6 +1457,7 @@ nav:
- ./api_reference/storage/vector_store/awsdocdb.md
- ./api_reference/storage/vector_store/azureaisearch.md
- ./api_reference/storage/vector_store/azurecosmosmongo.md
- ./api_reference/storage/vector_store/azurecosmosnosql.md
- ./api_reference/storage/vector_store/bagel.md
- ./api_reference/storage/vector_store/baiduvectordb.md
- ./api_reference/storage/vector_store/cassandra.md
Expand Down Expand Up @@ -2166,6 +2168,7 @@ plugins:
- ../llama-index-integrations/selectors/llama-index-selectors-notdiamond
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-mariadb
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-tablestore
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-azurecosmosnosql
- 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.11.7"
__version__ = "0.11.8"

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.11.7"
version = "0.11.8"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __init__(

if tokenizer.name_or_path != model_name:
logger.warning(
f"The model `{model_name}` and tokenizer `{self._tokenizer.name_or_path}` "
f"The model `{model_name}` and tokenizer `{tokenizer.name_or_path}` "
f"are different, please ensure that they are compatible."
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-huggingface"
readme = "README.md"
version = "0.3.1"
version = "0.3.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,9 +430,7 @@ def query(self, query: VectorStoreQuery, **kwargs: Any) -> VectorStoreQueryResul
raise ValueError("Query embedding is required for querying.")

redis_query = self._to_redis_query(query)
logger.info(
f"Querying index {self._index.name} with filters {redis_query.get_filter()}"
)
logger.info(f"Querying index {self._index.name} with query {redis_query!s}")

try:
results = self._index.query(redis_query)
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-redis"
readme = "README.md"
version = "0.3.1"
version = "0.3.2"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ unmatched_build_file_globs = "error"
config = "./pyproject.toml"

[python]
interpreter_constraints = ["==3.10.*", "==3.8.*", "==3.9.*"]
interpreter_constraints = ["==3.10.*", "==3.11.*", "==3.12.*", "==3.9.*"]

[python-infer]
ambiguity_resolution = "by_source_root"
Expand Down
Loading

0 comments on commit 5cb6755

Please sign in to comment.