Skip to content

Commit

Permalink
v0.11.16 (#16366)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Oct 4, 2024
1 parent 03d7540 commit 977d60a
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 26 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# ChangeLog

## [2024-10-03]

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

- Treat non-dict tool JSON function arguments as empty (instead of unexpected raise) (#16316)
- Fixing instrumentation for workflows (#16290)
- (workaround) Suppress token detaching exception during workflow tracing (#16364)
- Raise warning instead of error when nodes have no content (#16354)
- Fix typo in BasePGRetriever causing graph context to not be added (#16357)

### `llama-index-embeddings-vertex-endpoint` [0.1.0]

- adding vertex endpoint embedding (#16351)

### `llama-index-llms-fireworks` [0.2.1]

- Adding support in FireworksAI for Meta 3.2 Models: 1b-instruct; 3b-instruct; 11b-vision; 90b-vision (#16349)

### `llama-index-multi-modal-llms-openai` [0.2.1]

- Refactor OpenAI `update_tool_calls` (#16309)

### `llama-index-vector-stores-milvus` [0.2.7]

- Add support for nested MetadataFilters and FilterOperator.IS_EMPTY (#16329)

## [2024-10-02]

### `llama-index-core` [0.11.15]
Expand Down
28 changes: 27 additions & 1 deletion docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# ChangeLog

## [2024-10-03]

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

- Treat non-dict tool JSON function arguments as empty (instead of unexpected raise) (#16316)
- Fixing instrumentation for workflows (#16290)
- (workaround) Suppress token detaching exception during workflow tracing (#16364)
- Raise warning instead of error when nodes have no content (#16354)
- Fix typo in BasePGRetriever causing graph context to not be added (#16357)

### `llama-index-embeddings-vertex-endpoint` [0.1.0]

- adding vertex endpoint embedding (#16351)

### `llama-index-llms-fireworks` [0.2.1]

- Adding support in FireworksAI for Meta 3.2 Models: 1b-instruct; 3b-instruct; 11b-vision; 90b-vision (#16349)

### `llama-index-multi-modal-llms-openai` [0.2.1]

- Refactor OpenAI `update_tool_calls` (#16309)

### `llama-index-vector-stores-milvus` [0.2.7]

- Add support for nested MetadataFilters and FilterOperator.IS_EMPTY (#16329)

## [2024-10-02]

### `llama-index-core` [0.11.15]
Expand Down Expand Up @@ -63,7 +89,7 @@

### `llama-index-vector-stores-milvus` [0.2.6]

- milvus: always set self._collection (#16306)
- milvus: always set self.\_collection (#16306)
- Fix milvus collection creation with index_config (#16165)

### `llama-index-vector-stores-oracledb` [0.1.0]
Expand Down
4 changes: 4 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ nav:
- ./examples/cookbooks/llama3_cookbook_ollama_replicate.ipynb
- ./examples/cookbooks/mistralai.ipynb
- ./examples/cookbooks/mixedbread_reranker.ipynb
- ./examples/cookbooks/mongodb_retrieval_strategies.ipynb
- ./examples/cookbooks/oracleai_demo.ipynb
- ./examples/cookbooks/oreilly_course_cookbooks/Module-2/Components_Of_LlamaIndex.ipynb
- ./examples/cookbooks/oreilly_course_cookbooks/Module-3/Evaluating_RAG_Systems.ipynb
Expand Down Expand Up @@ -254,6 +255,7 @@ nav:
- ./examples/embeddings/textembed.ipynb
- ./examples/embeddings/together.ipynb
- ./examples/embeddings/upstage.ipynb
- ./examples/embeddings/vertex_embedding_endpoint.ipynb
- ./examples/embeddings/voyageai.ipynb
- ./examples/embeddings/yandexgpt.ipynb
- Evaluation:
Expand Down Expand Up @@ -897,6 +899,7 @@ nav:
- ./api_reference/embeddings/together.md
- ./api_reference/embeddings/upstage.md
- ./api_reference/embeddings/vertex.md
- ./api_reference/embeddings/vertex_endpoint.md
- ./api_reference/embeddings/voyageai.md
- ./api_reference/embeddings/xinference.md
- ./api_reference/embeddings/yandexgpt.md
Expand Down Expand Up @@ -2215,6 +2218,7 @@ plugins:
- ../llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-mistralai
- ../llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-huggingface
- ../llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-upstash
- ../llama-index-integrations/embeddings/llama-index-embeddings-vertex-endpoint
- 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.15"
__version__ = "0.11.16"

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.15"
version = "0.11.16"

[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,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-multi-modal-llms-openai"
readme = "README.md"
version = "0.2.1"
version = "0.2.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
40 changes: 20 additions & 20 deletions poetry.lock

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

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.11.15"
version = "0.11.16"

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

0 comments on commit 977d60a

Please sign in to comment.