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

Logan/v0.10.19 (#11870)

parent f0dba005
No related branches found
No related tags found
No related merge requests found
# ChangeLog
## [2024-03-12]
### `llama-index-cli` [0.1.9]
- Removed chroma as a bundled dep to reduce `llama-index` deps
### `llama-index-core` [0.10.19]
- Introduce retries for rate limits in `OpenAI` llm class (#11867)
- Added table comments to SQL table schemas in `SQLDatabase` (#11774)
- Added `LogProb` type to `ChatResponse` object (#11795)
- Introduced `LabelledSimpleDataset` (#11805)
- Fixed insert `IndexNode` objects with unserializable objects (#11836)
- Fixed stream chat type error when writing response to history in `CondenseQuestionChatEngine` (#11856)
- Improve post-processing for json query engine (#11862)
### `llama-index-embeddings-cohere` [0.1.4]
- Fixed async kwarg error (#11822)
### `llama-index-embeddings-dashscope` [0.1.2]
- Fixed pydantic import (#11765)
### `llama-index-graph-stores-neo4j` [0.1.3]
- Properly close connection after verifying connectivity (#11821)
### `llama-index-llms-cohere` [0.1.3]
- Add support for new `command-r` model (#11852)
### `llama-index-llms-huggingface` [0.1.4]
- Fixed streaming decoding with special tokens (#11807)
### `llama-index-llms-mistralai` [0.1.5]
- Added support for latest and open models (#11792)
### `llama-index-tools-finance` [0.1.1]
- Fixed small bug when passing in the API get for stock news (#11772)
### `llama-index-vector-stores-chroma` [0.1.6]
- Slimmed down chroma deps (#11775)
### `llama-index-vector-stores-lancedb` [0.1.3]
- Fixes for deleting (#11825)
### `llama-index-vector-stores-postgres` [0.1.3]
- Support for nested metadata filters (#11778)
## [2024-03-07]
### `llama-index-callbacks-deepeval` [0.1.3]
......
......@@ -69,11 +69,19 @@ def handle_download_llama_dataset(
def default_rag_cli() -> RagCLI:
import chromadb # pants: no-infer-dep
from llama_index.embeddings.openai import OpenAIEmbedding # pants: no-infer-dep
from llama_index.vector_stores.chroma import (
ChromaVectorStore,
) # pants: no-infer-dep
try:
import chromadb # pants: no-infer-dep
from llama_index.vector_stores.chroma import (
ChromaVectorStore,
) # pants: no-infer-dep
except ImportError:
raise ImportError(
"Default RAG pipeline uses chromadb. "
"Install with `pip install llama-index-vector-stores-chroma "
"or customize to use a different vector store."
)
persist_dir = default_ragcli_persist_dir()
chroma_client = chromadb.PersistentClient(path=persist_dir)
......
......@@ -32,12 +32,11 @@ maintainers = [
name = "llama-index-cli"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.8"
version = "0.1.9"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
llama-index-core = "^0.10.11.post1"
llama-index-vector-stores-chroma = "^0.1.1"
llama-index-embeddings-openai = "^0.1.1"
llama-index-llms-openai = "^0.1.1"
......
"""Init file of LlamaIndex."""
__version__ = "0.10.18.post1"
__version__ = "0.10.19"
import logging
from logging import NullHandler
......
......@@ -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.18.post1"
version = "0.10.19"
[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
......
......@@ -28,7 +28,7 @@ license = "MIT"
name = "llama-index-tools-finance"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.0"
version = "0.1.1"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
......
......@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-lancedb"
readme = "README.md"
version = "0.1.2"
version = "0.1.3"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......
......@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-postgres"
readme = "README.md"
version = "0.1.2"
version = "0.1.3"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......
This diff is collapsed.
......@@ -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.18"
version = "0.10.19"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......@@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.1.4"
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.18"
llama-index-core = "^0.10.19"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"
......
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