Skip to content

Commit

Permalink
v0.10.50 (run-llama#14359)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Jun 24, 2024
1 parent acf77a4 commit a24292c
Show file tree
Hide file tree
Showing 9 changed files with 131 additions and 105 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# ChangeLog

## [2024-06-24]

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

- added dead simple `FnAgentWorker` for custom agents (#14329)
- Pass the kwargs on when build_index_from_nodes (#14341)
- make async utils a bit more robust to nested async (#14356)

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

- every llm is a chat model (#14334)

### `llama-index-packs-rag-evaluator` [0.1.5]

- added possibility to run local embedding model in RAG evaluation packages (#14352)

## [2024-06-23]

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

## [2024-06-24]

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

- added dead simple `FnAgentWorker` for custom agents (#14329)
- Pass the kwargs on when build_index_from_nodes (#14341)
- make async utils a bit more robust to nested async (#14356)

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

- every llm is a chat model (#14334)

### `llama-index-packs-rag-evaluator` [0.1.5]

- added possibility to run local embedding model in RAG evaluation packages (#14352)

## [2024-06-23]

### `llama-index-core` [0.10.49]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/readers/toggl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.readers.toggl
options:
members:
- TogglReader
4 changes: 4 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1252,6 +1252,7 @@ nav:
- ./api_reference/readers/string_iterable.md
- ./api_reference/readers/stripe_docs.md
- ./api_reference/readers/telegram.md
- ./api_reference/readers/toggl.md
- ./api_reference/readers/trello.md
- ./api_reference/readers/twitter.md
- ./api_reference/readers/txtai.md
Expand Down Expand Up @@ -1324,6 +1325,7 @@ nav:
- ./api_reference/storage/graph_stores/neo4j.md
- ./api_reference/storage/graph_stores/neptune.md
- ./api_reference/storage/graph_stores/simple.md
- ./api_reference/storage/graph_stores/tidb.md
- Index Store:
- ./api_reference/storage/index_store/azure.md
- ./api_reference/storage/index_store/dynamodb.md
Expand Down Expand Up @@ -2017,6 +2019,8 @@ plugins:
- ../llama-index-integrations/readers/llama-index-readers-pdf-marker
- ../llama-index-integrations/llms/llama-index-llms-you
- ../llama-index-integrations/llms/llama-index-llms-watsonx
- ../llama-index-integrations/graph_stores/llama-index-graph-stores-tidb
- ../llama-index-integrations/readers/llama-index-readers-toggl
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
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.49"
__version__ = "0.10.50"

import logging
from logging import NullHandler
Expand Down
147 changes: 74 additions & 73 deletions llama-index-core/poetry.lock

Large diffs are not rendered by default.

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.49"
version = "0.10.50"

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 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.49"
version = "0.10.50"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -56,8 +56,8 @@ llama-index-question-gen-openai = "^0.1.2"
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.1.2"
llama-index-core = "0.10.49"
llama-index-indices-managed-llama-cloud = ">=0.2.0"
llama-index-core = "0.10.50"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit a24292c

Please sign in to comment.