Skip to content

Commit

Permalink
v0.10.3 version bump (#10662)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Feb 13, 2024
1 parent ef94eaf commit 5c1f056
Show file tree
Hide file tree
Showing 9 changed files with 152 additions and 134 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# ChangeLog

## [0.10.3] - 2024-02-13

### Bug Fixes / Nits

- Fixed passing in LLM to `as_chat_engine` (#10605)
- Fixed system prompt formatting for anthropic (#10603)
- Fixed elasticsearch vector store error on `__version__` (#10656)
- Fixed import on openai pydantic program (#10657)
- Added client back to opensearch vector store exports (#10660)
- Fixed bug in SimpleDirectoryReader not using file loaders properly (#10655)
- Added lazy LLM initialization to RankGPT (#10648)
- Fixed bedrock embedding `from_credentials` passing ing the model name (#10640)
- Added back recent changes to TelegramReader (#10625)

## [0.10.0, 0.10.1] - 2024-02-12

### Breaking Changes
Expand Down
5 changes: 2 additions & 3 deletions llama-index-core/llama_index/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Init file of LlamaIndex."""

import logging
from logging import NullHandler
from typing import Callable, Optional
Expand Down Expand Up @@ -53,9 +54,7 @@
PromptTemplate,
SelectorPromptTemplate,
)
from llama_index.core.readers import (
SimpleDirectoryReader,
)
from llama_index.core.readers import SimpleDirectoryReader, download_loader

# Response Synthesizer
from llama_index.core.response_synthesizers.factory import get_response_synthesizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@
"AugmentationPrecisionEvaluator": "llama_index.evaluation.tonic_validate",
"RetrievalPrecisionEvaluator": "llama_index.evaluation.tonic_validate",
"TonicValidateEvaluator": "llama_index.evaluation.tonic_validate",
"BaseReader": "llama_index.core.readers.base",
"DocugamiReader": "llama_index.readers.docugami",
"SlackReader": "llama_index.readers.slack",
"GeniusReader": "llama_index.readers.genius",
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 @@ -42,7 +42,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.1"
version = "0.10.3"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = "llama-index embeddings bedrock integration"
license = "MIT"
name = "llama-index-embeddings-bedrock"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = "llama-index postprocessor rankgpt rerank integration"
license = "MIT"
name = "llama-index-postprocessor-rankgpt-rerank"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = "llama-index readers telegram integration"
license = "MIT"
name = "llama-index-readers-telegram"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand Down
256 changes: 130 additions & 126 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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.1"
version = "0.10.3"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand Down

0 comments on commit 5c1f056

Please sign in to comment.