Skip to content
Snippets Groups Projects
Unverified Commit 5c1f0562 authored by Logan's avatar Logan Committed by GitHub
Browse files

v0.10.3 version bump (#10662)

parent ef94eafd
No related branches found
Tags v0.10.3
No related merge requests found
# ChangeLog # 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 ## [0.10.0, 0.10.1] - 2024-02-12
### Breaking Changes ### Breaking Changes
......
"""Init file of LlamaIndex.""" """Init file of LlamaIndex."""
import logging import logging
from logging import NullHandler from logging import NullHandler
from typing import Callable, Optional from typing import Callable, Optional
...@@ -53,9 +54,7 @@ from llama_index.core.prompts import ( ...@@ -53,9 +54,7 @@ from llama_index.core.prompts import (
PromptTemplate, PromptTemplate,
SelectorPromptTemplate, SelectorPromptTemplate,
) )
from llama_index.core.readers import ( from llama_index.core.readers import SimpleDirectoryReader, download_loader
SimpleDirectoryReader,
)
# Response Synthesizer # Response Synthesizer
from llama_index.core.response_synthesizers.factory import get_response_synthesizer from llama_index.core.response_synthesizers.factory import get_response_synthesizer
......
...@@ -531,6 +531,7 @@ ...@@ -531,6 +531,7 @@
"AugmentationPrecisionEvaluator": "llama_index.evaluation.tonic_validate", "AugmentationPrecisionEvaluator": "llama_index.evaluation.tonic_validate",
"RetrievalPrecisionEvaluator": "llama_index.evaluation.tonic_validate", "RetrievalPrecisionEvaluator": "llama_index.evaluation.tonic_validate",
"TonicValidateEvaluator": "llama_index.evaluation.tonic_validate", "TonicValidateEvaluator": "llama_index.evaluation.tonic_validate",
"BaseReader": "llama_index.core.readers.base",
"DocugamiReader": "llama_index.readers.docugami", "DocugamiReader": "llama_index.readers.docugami",
"SlackReader": "llama_index.readers.slack", "SlackReader": "llama_index.readers.slack",
"GeniusReader": "llama_index.readers.genius", "GeniusReader": "llama_index.readers.genius",
......
...@@ -42,7 +42,7 @@ name = "llama-index-core" ...@@ -42,7 +42,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}] packages = [{include = "llama_index"}]
readme = "README.md" readme = "README.md"
repository = "https://github.com/run-llama/llama_index" repository = "https://github.com/run-llama/llama_index"
version = "0.10.1" version = "0.10.3"
[tool.poetry.dependencies] [tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"} SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
......
...@@ -19,7 +19,7 @@ description = "llama-index embeddings bedrock integration" ...@@ -19,7 +19,7 @@ description = "llama-index embeddings bedrock integration"
license = "MIT" license = "MIT"
name = "llama-index-embeddings-bedrock" name = "llama-index-embeddings-bedrock"
readme = "README.md" readme = "README.md"
version = "0.1.1" version = "0.1.2"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<3.12" python = ">=3.8.1,<3.12"
......
...@@ -19,7 +19,7 @@ description = "llama-index postprocessor rankgpt rerank integration" ...@@ -19,7 +19,7 @@ description = "llama-index postprocessor rankgpt rerank integration"
license = "MIT" license = "MIT"
name = "llama-index-postprocessor-rankgpt-rerank" name = "llama-index-postprocessor-rankgpt-rerank"
readme = "README.md" readme = "README.md"
version = "0.1.1" version = "0.1.2"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<3.12" python = ">=3.8.1,<3.12"
......
...@@ -19,7 +19,7 @@ description = "llama-index readers telegram integration" ...@@ -19,7 +19,7 @@ description = "llama-index readers telegram integration"
license = "MIT" license = "MIT"
name = "llama-index-readers-telegram" name = "llama-index-readers-telegram"
readme = "README.md" readme = "README.md"
version = "0.1.1" version = "0.1.2"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<3.12" python = ">=3.8.1,<3.12"
......
This diff is collapsed.
...@@ -41,7 +41,7 @@ name = "llama-index" ...@@ -41,7 +41,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}] packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md" readme = "README.md"
repository = "https://github.com/run-llama/llama_index" repository = "https://github.com/run-llama/llama_index"
version = "0.10.1" version = "0.10.3"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<3.12" python = ">=3.8.1,<3.12"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment