Skip to content

Commit

Permalink
v0.11.14 (#16238)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Sep 26, 2024
1 parent 944945e commit 9d1a33f
Show file tree
Hide file tree
Showing 8 changed files with 231 additions and 140 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# ChangeLog

## [2024-09-26]

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

- Enhance insert Method in BaseIndex to Support Customizable Transformations (#16206)
- Ensure ChatMemoryBuffer's chat history never begins with a TOOL message (#16214)
- safe prompt helper string formatting (#16219)
- [Feature Request] Support max concurrent workflow_instance.run() executions (#16215)
- Workflows + Human In The Loop Dedicated Support (#16220)

### `llama-index-graph-stores-neptune` [0.2.2]

- fix NoneType object error when passing in provided client (#16174)

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

- fix ollama chat missing `keep_alive` (#16182)

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

- Fix vertex init function (#16216)

### `llama-index-multi-modal-llms-mistral` [0.1.0]

- Add support for Mistral Multi modal LLM (#16191)

### `llama-index-readers-jira` [0.3.0]

- Add pagination support for Jira Reader (#16226)

### `llama-index-vector-stores-azurecosmosmongo` [0.2.1]

- Azure Cosmos DB Filtered Vector Search (#16175)

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

- Azure Cosmos DB Filtered Vector Search (#16175)

### `llama-index-vector-stores-deeplake` [0.2.1]

- Add missing JWT dependency (#16236)

## [2024-09-24]

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

## [2024-09-26]

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

- Enhance insert Method in BaseIndex to Support Customizable Transformations (#16206)
- Ensure ChatMemoryBuffer's chat history never begins with a TOOL message (#16214)
- safe prompt helper string formatting (#16219)
- [Feature Request] Support max concurrent workflow_instance.run() executions (#16215)
- Workflows + Human In The Loop Dedicated Support (#16220)

### `llama-index-graph-stores-neptune` [0.2.2]

- fix NoneType object error when passing in provided client (#16174)

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

- fix ollama chat missing `keep_alive` (#16182)

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

- Fix vertex init function (#16216)

### `llama-index-multi-modal-llms-mistral` [0.1.0]

- Add support for Mistral Multi modal LLM (#16191)

### `llama-index-readers-jira` [0.3.0]

- Add pagination support for Jira Reader (#16226)

### `llama-index-vector-stores-azurecosmosmongo` [0.2.1]

- Azure Cosmos DB Filtered Vector Search (#16175)

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

- Azure Cosmos DB Filtered Vector Search (#16175)

### `llama-index-vector-stores-deeplake` [0.2.1]

- Add missing JWT dependency (#16236)

## [2024-09-24]

### `llama-index-core` [0.11.13]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/multi_modal_llms/mistral.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.multi_modal_llms.mistral
options:
members:
- MistralMultiModal
3 changes: 3 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ nav:
- ./examples/multi_modal/image_to_image_retrieval.ipynb
- ./examples/multi_modal/llava_demo.ipynb
- ./examples/multi_modal/llava_multi_modal_tesla_10q.ipynb
- ./examples/multi_modal/mistral_multi_modal.ipynb
- ./examples/multi_modal/mm_agent.ipynb
- ./examples/multi_modal/multi_modal_pydantic.ipynb
- ./examples/multi_modal/multi_modal_rag_nomic.ipynb
Expand Down Expand Up @@ -1107,6 +1108,7 @@ nav:
- ./api_reference/multi_modal_llms/dashscope.md
- ./api_reference/multi_modal_llms/gemini.md
- ./api_reference/multi_modal_llms/index.md
- ./api_reference/multi_modal_llms/mistral.md
- ./api_reference/multi_modal_llms/ollama.md
- ./api_reference/multi_modal_llms/openai.md
- ./api_reference/multi_modal_llms/replicate.md
Expand Down Expand Up @@ -2194,6 +2196,7 @@ plugins:
- ../llama-index-integrations/readers/llama-index-readers-quip
- ../llama-index-integrations/sparse_embeddings/llama-index-sparse-embeddings-fastembed
- ../llama-index-integrations/node_parser/llama-index-node-parser-topic
- ../llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-mistralai
- 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.13.post1"
__version__ = "0.11.14"

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.13.post1"
version = "0.11.14"

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

0 comments on commit 9d1a33f

Please sign in to comment.