Skip to content

Commit

Permalink
v0.10.41 (#13853)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored May 31, 2024
1 parent d8aaaf2 commit 9de0147
Show file tree
Hide file tree
Showing 26 changed files with 103 additions and 36 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# ChangeLog

## [2024-05-30]

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

- pass embeddings from index to property graph retriever (#13843)
- protect instrumentation event/span handlers from each other (#13823)
- add missing events for completion streaming (#13824)
- missing callback_manager.on_event_end when there is exception (#13825)

### `llama-index-llms-gemini` [0.1.10]

- use `model` kwarg for model name for gemini (#13791)

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

- Add mistral code model (#13807)
- update mistral codestral with fill in middle endpoint (#13810)

### `llama-index-llms-openllm` [0.1.5]

- 0.5 integrations update (#13848)

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

- Safety setting for Pydantic Error for Vertex Integration (#13817)

### `llama-index-readers-smart-pdf-loader` [0.1.5]

- handle path objects in smart pdf reader (#13847)

## [2024-05-28]

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

## [2024-05-30]

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

- pass embeddings from index to property graph retriever (#13843)
- protect instrumentation event/span handlers from each other (#13823)
- add missing events for completion streaming (#13824)
- missing callback_manager.on_event_end when there is exception (#13825)

### `llama-index-llms-gemini` [0.1.10]

- use `model` kwarg for model name for gemini (#13791)

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

- Add mistral code model (#13807)
- update mistral codestral with fill in middle endpoint (#13810)

### `llama-index-llms-openllm` [0.1.5]

- 0.5 integrations update (#13848)

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

- Safety setting for Pydantic Error for Vertex Integration (#13817)

### `llama-index-readers-smart-pdf-loader` [0.1.5]

- handle path objects in smart pdf reader (#13847)

## [2024-05-28]

### `llama-index-core` [0.10.40]
Expand Down Expand Up @@ -50,7 +80,7 @@
### `llama-index-vector-stores-milvus` [0.1.16]

- Remove FlagEmbedding as Milvus's dependency (#13767)
Unify the collection construction regardless of the value of enable_sparse (#13773)
Unify the collection construction regardless of the value of enable_sparse (#13773)

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

Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/readers/azure_devops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.readers.azure_devops
options:
members:
- AzureDevopsReader
3 changes: 3 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ nav:
- ./examples/cookbooks/llama3_cookbook.ipynb
- ./examples/cookbooks/llama3_cookbook_groq.ipynb
- ./examples/cookbooks/llama3_cookbook_ollama_replicate.ipynb
- ./examples/cookbooks/codestral.ipynb
- Customization:
- ./examples/customization/streaming/chat_engine_condense_question_stream_response.ipynb
- ./examples/customization/streaming/SimpleIndexDemo-streaming.ipynb
Expand Down Expand Up @@ -1099,6 +1100,7 @@ nav:
- ./api_reference/readers/awadb.md
- ./api_reference/readers/azcognitive_search.md
- ./api_reference/readers/azstorage_blob.md
- ./api_reference/readers/azure_devops.md
- ./api_reference/readers/bagel.md
- ./api_reference/readers/bilibili.md
- ./api_reference/readers/bitbucket.md
Expand Down Expand Up @@ -1953,6 +1955,7 @@ plugins:
- ../llama-index-integrations/node_parser/llama-index-node-parser-relational-dashscope
- ../llama-index-integrations/readers/llama-index-readers-dashscope
- ../llama-index-integrations/llms/llama-index-llms-oci-genai
- ../llama-index-integrations/readers/llama-index-readers-azure-devops
- 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.10.40"
__version__ = "0.10.41"

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.10.40"
version = "0.10.41"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
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-agent-openai-legacy"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-agent-openai"
readme = "README.md"
version = "0.2.5"
version = "0.2.6"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-llms-gemini"
readme = "README.md"
version = "0.1.9"
version = "0.1.10"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
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.2.1"
version = "0.2.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ license = "MIT"
name = "llama-index-llms-ipex-llm"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
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-llms-langchain"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-cohere-rerank"
readme = "README.md"
version = "0.1.6"
version = "0.1.7"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ license = "MIT"
name = "llama-index-postprocessor-colbert-rerank"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.2"
version = "0.1.3"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-dashscope-rerank"
readme = "README.md"
version = "0.1.0"
version = "0.1.1"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-flag-embedding-reranker"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-jinaai-rerank"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ license = "MIT"
name = "llama-index-postprocessor-nvidia-rerank"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.2"
version = "0.1.3"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-openvino-rerank"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-rankgpt-rerank"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ license = "MIT"
name = "llama-index-postprocessor-rankllm-rerank"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-postprocessor-sbert-rerank"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ license = "MIT"
name = "llama-index-postprocessor-voyageai-rerank"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ license = "MIT"
maintainers = ["EugeneLightsOn"]
name = "llama-index-packs-cohere-citation-chat"
readme = "README.md"
version = "0.1.5"
version = "0.1.6"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
26 changes: 13 additions & 13 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 @@ -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.40"
version = "0.10.41"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = ">=0.1.4,<0.3.0"
llama-index-readers-file = "^0.1.4"
llama-index-readers-llama-parse = "^0.1.2"
llama-index-indices-managed-llama-cloud = "^0.1.2"
llama-index-core = "^0.10.40"
llama-index-core = "0.10.41"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 9de0147

Please sign in to comment.