Skip to content

Commit

Permalink
v0.12.2 (#17076)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Nov 26, 2024
1 parent 55d4891 commit cbf958f
Show file tree
Hide file tree
Showing 9 changed files with 115 additions and 11 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,56 @@
# ChangeLog

## [2024-11-26]

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

- improve traceback logging for workflows (#17040)
- Initial version of checkpointing for Workflows (#17006)
- Fix base component tests (#17062)
- mark code splitter tests as optional (#17060)
- update contributing guide and dev deps (#17051)
- fix Handling of WorkflowDone exception (#17047)

### `llama-index-embeddings-vertex` [0.3.1]

- remove pyarrow from vertex deps (#16997)

### `llama-index-llms-ibm` [0.3.1]

- IBM watsonx.ai acomplete & achat integration (#17034)

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

- fixes tool_choice in certain scenarios for openai (#17058)

### `llama-index-llms-perplexity` [0.3.1]

- Fix: update perplexity models, add unit tests and minor fixes (#17045)

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

- remove pyarrow from vertex deps (#16997)

### `llama-index-multi-modal-llms-huggingface` [0.2.1]

- Add stream_chat and conditionally set AutoModelClass to MllamaForConditionalGeneration (#17031)

### `llama-index-readers-box` [0.3.1]

- Fix box api - mypy breakage (#17061)

### `llama-index-vector-stores-deeplake` [0.3.2]

- deeplake v3 backward compatibility (#17057)

### `llama-index-vector-stores-mongodb` [0.6.0]

- MongoDB Atlas: Adds search index commands and tests/examples of metadata filters (#15265)

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

- check if schema exists before doing rest of init during pgvector table creation (#17063)

## [2024-11-20]

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

## [2024-11-26]

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

- improve traceback logging for workflows (#17040)
- Initial version of checkpointing for Workflows (#17006)
- Fix base component tests (#17062)
- mark code splitter tests as optional (#17060)
- update contributing guide and dev deps (#17051)
- fix Handling of WorkflowDone exception (#17047)

### `llama-index-embeddings-vertex` [0.3.1]

- remove pyarrow from vertex deps (#16997)

### `llama-index-llms-ibm` [0.3.1]

- IBM watsonx.ai acomplete & achat integration (#17034)

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

- fixes tool_choice in certain scenarios for openai (#17058)

### `llama-index-llms-perplexity` [0.3.1]

- Fix: update perplexity models, add unit tests and minor fixes (#17045)

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

- remove pyarrow from vertex deps (#16997)

### `llama-index-multi-modal-llms-huggingface` [0.2.1]

- Add stream_chat and conditionally set AutoModelClass to MllamaForConditionalGeneration (#17031)

### `llama-index-readers-box` [0.3.1]

- Fix box api - mypy breakage (#17061)

### `llama-index-vector-stores-deeplake` [0.3.2]

- deeplake v3 backward compatibility (#17057)

### `llama-index-vector-stores-mongodb` [0.6.0]

- MongoDB Atlas: Adds search index commands and tests/examples of metadata filters (#15265)

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

- check if schema exists before doing rest of init during pgvector table creation (#17063)

## [2024-11-20]

### `llama-index-core` [0.12.1]
Expand Down
2 changes: 2 additions & 0 deletions docs/docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ If you're ready to dive in, here’s a quick setup guide to get you going:
poetry install --only dev,docs --no-root
```
5. Install the package(s) you want to work on. You will for sure need to install `llama-index-core`:

```bash
pip install -e llama-index-core
```

From there, you can install specific integrations that you want to work on:

```bash
pip install -e llama-index-integrations/llms/llama-index-llms-openai
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/examples/workflow/checkpointing_workflows.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"source": [
"handler = wflow_ckptr.run(\n",
" topic=\"chemistry\",\n",
" store_checkpoints=False,\n",
" store_checkpoints=True,\n",
")\n",
"await handler"
]
Expand Down
4 changes: 2 additions & 2 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ nav:
- ./examples/data_connectors/NotionDemo.ipynb
- ./examples/data_connectors/ObsidianReaderDemo.ipynb
- ./examples/data_connectors/PathwayReaderDemo.ipynb
- ./examples/data_connectors/PineconeDemo.ipynb
- ./examples/data_connectors/PreprocessReaderDemo.ipynb
- ./examples/data_connectors/PsychicDemo.ipynb
- ./examples/data_connectors/QdrantDemo.ipynb
Expand Down Expand Up @@ -530,8 +529,8 @@ nav:
- ./examples/property_graph/property_graph_advanced.ipynb
- ./examples/property_graph/property_graph_basic.ipynb
- ./examples/property_graph/property_graph_custom_retriever.ipynb
- ./examples/property_graph/property_graph_neo4j.ipynb
- ./examples/property_graph/property_graph_memgraph.ipynb
- ./examples/property_graph/property_graph_neo4j.ipynb
- Query Engines:
- ./examples/query_engine/CustomRetrievers.ipynb
- ./examples/query_engine/JSONalyze_query_engine.ipynb
Expand Down Expand Up @@ -706,6 +705,7 @@ nav:
- ./examples/workflow/JSONalyze_query_engine.ipynb
- ./examples/workflow/advanced_text_to_sql.ipynb
- ./examples/workflow/auto_retrieval.ipynb
- ./examples/workflow/checkpointing_workflows.ipynb
- ./examples/workflow/citation_query_engine.ipynb
- ./examples/workflow/corrective_rag_pack.ipynb
- ./examples/workflow/function_calling_agent.ipynb
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.12.1"
__version__ = "0.12.2"

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 @@ -46,7 +46,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.12.1"
version = "0.12.2"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
8 changes: 4 additions & 4 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 @@ -45,7 +45,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.12.1"
version = "0.12.2"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand All @@ -58,7 +58,7 @@ llama-index-agent-openai = "^0.4.0"
llama-index-readers-file = "^0.4.0"
llama-index-readers-llama-parse = ">=0.4.0"
llama-index-indices-managed-llama-cloud = ">=0.4.0"
llama-index-core = "^0.12.1"
llama-index-core = "^0.12.2"
llama-index-multi-modal-llms-openai = "^0.3.0"
llama-index-cli = "^0.4.0"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down

0 comments on commit cbf958f

Please sign in to comment.