Skip to content

Commit

Permalink
Logan/v0.10.18 (#11763)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Mar 8, 2024
1 parent 477e049 commit 593d860
Show file tree
Hide file tree
Showing 10 changed files with 81 additions and 29 deletions.
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
# ChangeLog

## [2024-03-07]

### `llama-index-callbacks-deepeval` [0.1.3]

- Update import path for callback handler (#11754)

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

- Ensure `LoadAndSearchToolSpec` loads document objects (#11733)
- Fixed bug for no nodes in `QueryFusionRetriever` (#11759)
- Allow using different runtime kwargs for different evaluators in `BatchEvalRunner` (#11727)
- Fixed issues with fsspec + `SimpleDirectoryReader` (#11665)
- Remove `asyncio.run()` requirement from guideline evaluator (#11719)

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

- Update voyage embeddings to use proper clients (#11721)

### `llama-index-indices-managed-vectara` [0.1.3]

- Fixed issues with vectara query engine in non-summary mode (#11668)

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

- Add `return_output` option for json output with query and response (#11761)

### `llama-index-packs-code-hierarchy` [0.1.0]

- Added support for a `CodeHiearchyAgentPack` that allows for agentic traversal of a codebase (#10671)

### `llama-index-packs-cohere-citation-chat` [0.1.3]

- Added a new llama-pack for citations + chat with cohere (#11697)

### `llama-index-vector-stores-milvus` [0.1.6]

- Prevent forced `flush()` on document add (#11734)

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

- Small typo in metadata column name (#11751)

### `llama-index-vector-stores-tidbvector` [0.1.0]

- Initial support for TiDB vector store (#11635)

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

- Small fix for `int` fields in metadata filters (#11742)

## [2024-03-06]

New format! Going to try out reporting changes per package.
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.17"
__version__ = "0.10.18.post1"

import logging
from logging import NullHandler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
"LLMQuestionGenerator": "llama_index.core.question_gen",
"SubQuestionOutputParser": "llama_index.core.question_gen",
"ReaderConfig": "llama_index.core.readers",
"CodeHierarchyAgentPack": "llama_index.packs.code_hierarchy",
"CodeHierarchyNodeParser": "llama_index.packs.code_hierarchy",
"CodeHierarchyKeywordQueryEngine": "llama_index.packs.code_hierarchy",
"StringIterableReader": "llama_index.core.readers",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
MessageRole.ASSISTANT: MessageRole.MODEL,
## Gemini only has user and model roles. Put the rest in user role.
MessageRole.SYSTEM: MessageRole.USER,
MessageRole.MODEL: MessageRole.MODEL,
}
ROLES_FROM_GEMINI: Dict[MessageRole, MessageRole] = {
## Gemini only has user and model roles.
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.17"
version = "0.10.18.post1"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
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-embeddings-voyageai"
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 @@ -31,7 +31,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-indices-managed-vectara"
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-llms-mymagic"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
44 changes: 22 additions & 22 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.17"
version = "0.10.18"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -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.17"
llama-index-core = "^0.10.18"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 593d860

Please sign in to comment.