Skip to content

Commit

Permalink
v0.10.63 (#15244)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Aug 9, 2024
1 parent cc63a38 commit 8a48fdc
Show file tree
Hide file tree
Showing 8 changed files with 191 additions and 108 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# ChangeLog

## [2024-08-08]

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

- add num_workers in workflow decorator to resolve step concurrancy issue (#15210)
- Sub Question Query Engine as workflow notebook example (#15209)
- Add Llamatrace to workflow notebooks (#15186)
- Use node hash instead of node text to match nodes in fusion retriever (#15172)

### `llama-index-embeddings-mistralai` [0.1.5]

- handle mistral v1.0 client (#15229)

### `llama-index-extractors-relik` [0.1.1]

- Fix relik extractor skip error (#15225)

### `llama-index-finetuning` [0.1.11]

- handle mistral v1.0 client (#15229)

### `llama-index-graph-stores-neo4j` [0.2.14]

- Add neo4j generic node label (#15191)

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

- Allow for images in Anthropic messages (#15227)

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

- handle mistral v1.0 client (#15229)

### `llama-index-packs-mixture-of-agents` [0.1.2]

- Update Mixture Of Agents llamapack with workflows (#15232)

### `llama-index-tools-slack` [0.1.4]

- Fixed slack client ref in ToolSpec (#15202)

## [2024-08-06]

### `llama-index-core` [0.10.62]
Expand Down
41 changes: 41 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# ChangeLog

## [2024-08-08]

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

- add num_workers in workflow decorator to resolve step concurrancy issue (#15210)
- Sub Question Query Engine as workflow notebook example (#15209)
- Add Llamatrace to workflow notebooks (#15186)
- Use node hash instead of node text to match nodes in fusion retriever (#15172)

### `llama-index-embeddings-mistralai` [0.1.5]

- handle mistral v1.0 client (#15229)

### `llama-index-extractors-relik` [0.1.1]

- Fix relik extractor skip error (#15225)

### `llama-index-finetuning` [0.1.11]

- handle mistral v1.0 client (#15229)

### `llama-index-graph-stores-neo4j` [0.2.14]

- Add neo4j generic node label (#15191)

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

- Allow for images in Anthropic messages (#15227)

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

- handle mistral v1.0 client (#15229)

### `llama-index-packs-mixture-of-agents` [0.1.2]

- Update Mixture Of Agents llamapack with workflows (#15232)

### `llama-index-tools-slack` [0.1.4]

- Fixed slack client ref in ToolSpec (#15202)

## [2024-08-06]

### `llama-index-core` [0.10.62]
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/api_reference/storage/graph_stores/neptune.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
options:
members:
- NeptuneAnalyticsGraphStore
- NeptuneDatabaseGraphStore
- NeptuneAnalyticsPropertyGraphStore
- NeptuneDatabaseGraphStore
- NeptuneDatabasePropertyGraphStore
1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ nav:
- ./examples/workflow/rag.ipynb
- ./examples/workflow/react_agent.ipynb
- ./examples/workflow/reflection.ipynb
- ./examples/workflow/sub_question_query_engine.ipynb
- Component Guides:
- ./module_guides/index.md
- Models:
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.62"
__version__ = "0.10.63"

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.62"
version = "0.10.63"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
206 changes: 103 additions & 103 deletions poetry.lock

Large diffs are not rendered by default.

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.62"
version = "0.10.63"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = ">=0.1.4,<0.3.0"
llama-index-readers-file = "^0.1.4"
llama-index-readers-llama-parse = ">=0.1.2"
llama-index-indices-managed-llama-cloud = ">=0.2.0"
llama-index-core = "0.10.62"
llama-index-core = "0.10.63"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 8a48fdc

Please sign in to comment.