Skip to content

Commit

Permalink
v0.10.20 (#11962)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Mar 15, 2024
1 parent cd6700a commit 434de44
Show file tree
Hide file tree
Showing 14 changed files with 130 additions and 1,657 deletions.
78 changes: 78 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,83 @@
# ChangeLog

## [2024-03-14]

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

- New `instrumentation` module for observability (#11831)
- Allow passing in LLM for `CitationQueryEngine` (#11914)
- Updated keyval docstore to allow changing suffix in addition to namespace (#11873)
- Add (some) async streaming support to query_engine #11949

### `llama-index-embeddings-dashscope` [0.1.3]

- Fixed embedding type for query texts (#11901)

### `llama-index-embeddings-premai` [0.1.3]

- Support for premai embeddings (#11954)

### `llama-index-networks` [0.2.0]

- Added support for network retrievers (#11800)

### `llama-index-llms-anthropic` [0.1.6]

- Added support for haiku (#11916)

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

- Fixed import error for ChatMessage (#11902)

### `llama-index-llms-openai` [0.1.11]

- added gpt-35-turbo-0125 for AZURE_TURBO_MODELS (#11956)
- fixed error with nontype in logprobs (#11967)

### `llama-index-llms-premai` [0.1.4]

- Support for premai llm (#11954)

### `llama-index-llms-solar` [0.1.3]

- Support for solar as an LLM class (#11710)

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

- Add support for medlm in vertex (#11911)

### `llama-index-readers-goolge` [0.1.6]

- added README files and query string for google drive reader (#11724)

### `llama-index-readers-file` [0.1.11]

- Updated ImageReader to add `plain_text` option to trigger pytesseract (#11913)

### `llama-index-readers-pathway` [0.1.3]

- use pure requests to reduce deps, simplify code (#11924)

### `llama-index-retrievers-pathway` [0.1.3]

- use pure requests to reduce deps, simplify code (#11924)

### `llama-index-storage-docstore-mongodb` [0.1.3]

- Allow changing suffix for mongodb docstore (#11873)

### `llama-index-vector-stores-databricks` [0.1.1]

- Support for databricks vector search as a vector store (#10754)

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

- (re)implement proper delete (#11959)

### `llama-index-vector-stores-postgres` [0.1.4]

- Fixes for IN filters and OR text search (#11872, #11927)

## [2024-03-12]

### `llama-index-cli` [0.1.9]
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.19"
__version__ = "0.10.20.post1"

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.19"
version = "0.10.20.post1"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
1 change: 0 additions & 1 deletion llama-index-core/storage/default__vector_store.json

This file was deleted.

69 changes: 0 additions & 69 deletions llama-index-core/storage/docstore.json

This file was deleted.

1 change: 0 additions & 1 deletion llama-index-core/storage/graph_store.json

This file was deleted.

1 change: 0 additions & 1 deletion llama-index-core/storage/image__vector_store.json

This file was deleted.

8 changes: 0 additions & 8 deletions llama-index-core/storage/index_store.json

This file was deleted.

Binary file removed llama-index-core/storage/object_node_mapping.pickle
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-vertex"
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 @@ -45,7 +45,7 @@ maintainers = [
]
name = "llama-index-readers-google"
readme = "README.md"
version = "0.1.5"
version = "0.1.6"

[tool.poetry.dependencies]
python = ">=3.10,<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-vector-stores-opensearch"
readme = "README.md"
version = "0.1.7"
version = "0.1.8"

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

0 comments on commit 434de44

Please sign in to comment.