Skip to content

Commit

Permalink
v0.12.13 (#17605)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jan 23, 2025
1 parent bb52644 commit 3cb06f8
Show file tree
Hide file tree
Showing 9 changed files with 181 additions and 60 deletions.
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,64 @@
# ChangeLog

## [2025-01-23]

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

- Fixing header_path bug re: markdown level vs. stack depth in MarkdownNodeParser (#17602)
- Advanced text to sql sample rows, adding row retrieval for few-shot prompts (#17479)
- Made the message role of ReAct observation configurable (#17521)
- fix reconstructing a tool in AgentWorkflow (#17596)
- support content blocks in chat templates (#17603)
- Add contextual retrieval support with a new `DocumentContextExtractor` (#17367)

### `llama-index-graph-stores-memgraph` [0.2.1]

- Vector index support for Memgraph's integration (#17570)

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

- Improves connections for neo4j objects and adds some tests (#17562)

### `llama-index-indices-managed-llama-cloud` [0.6.4]

- Add framework integration for composite retrieval (#17536)

### `llama-index-llms-langchain` [0.5.1]

- get valid string when streaming (#17566)

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

- update function calling models in mistral (#17604)

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

- fix openai.BadRequestError: Invalid value for 'content': expected a string, got null for tool calls (#17556)

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

- Refactor markdown_to_tups method to better handle multi-level headers (#17508)

### `llama-index-readers-web` [0.3.5]

- feat: Agentql Web Loader (#17575)

### `llama-index-tools-linkup-research` [0.3.0]

- add linkup tool (#17541)

### `llama-index-tools-notion` [0.3.1]

- fix: correct the input params of "load_data" in NotionPageReader (#17529)

### `llama-index-vector-stores-pinecone` [0.4.3]

- build: 🆙 replace pinecone-client with pinecone package (#17587)

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

- Add support for halfvec vector type (#17534)

## [2025-01-20]

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

## [2025-01-23]

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

- Fixing header_path bug re: markdown level vs. stack depth in MarkdownNodeParser (#17602)
- Advanced text to sql sample rows, adding row retrieval for few-shot prompts (#17479)
- Made the message role of ReAct observation configurable (#17521)
- fix reconstructing a tool in AgentWorkflow (#17596)
- support content blocks in chat templates (#17603)
- Add contextual retrieval support with a new `DocumentContextExtractor` (#17367)

### `llama-index-graph-stores-memgraph` [0.2.1]

- Vector index support for Memgraph's integration (#17570)

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

- Improves connections for neo4j objects and adds some tests (#17562)

### `llama-index-indices-managed-llama-cloud` [0.6.4]

- Add framework integration for composite retrieval (#17536)

### `llama-index-llms-langchain` [0.5.1]

- get valid string when streaming (#17566)

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

- update function calling models in mistral (#17604)

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

- fix openai.BadRequestError: Invalid value for 'content': expected a string, got null for tool calls (#17556)

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

- Refactor markdown_to_tups method to better handle multi-level headers (#17508)

### `llama-index-readers-web` [0.3.5]

- feat: Agentql Web Loader (#17575)

### `llama-index-tools-linkup-research` [0.3.0]

- add linkup tool (#17541)

### `llama-index-tools-notion` [0.3.1]

- fix: correct the input params of "load_data" in NotionPageReader (#17529)

### `llama-index-vector-stores-pinecone` [0.4.3]

- build: 🆙 replace pinecone-client with pinecone package (#17587)

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

- Add support for halfvec vector type (#17534)

## [2025-01-20]

### `llama-index-core` [0.12.12]
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/examples/agent/agent_workflow_basic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"source": [
"## Maintaining State\n",
"\n",
"By default, the `AgentWorkflow` will maintain statless between runs. This means that the agent will not have any memory of previous runs.\n",
"By default, the `AgentWorkflow` will maintain stateless between runs. This means that the agent will not have any memory of previous runs.\n",
"\n",
"To maintain state, we need to keep track of the previous state. Since the `AgentWorkflow` is a `Workflow`, the state is stored in the `Context`. This can be passed between runs to maintain state and history."
]
Expand Down
3 changes: 3 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ nav:
- Memory:
- ./examples/memory/Mem0Memory.ipynb
- Metadata Extractors:
- ./examples/metadata_extraction/DocumentContextExtractor.ipynb
- ./examples/metadata_extraction/EntityExtractionClimate.ipynb
- ./examples/metadata_extraction/MarvinMetadataExtractorDemo.ipynb
- ./examples/metadata_extraction/MetadataExtractionSEC.ipynb
Expand Down Expand Up @@ -1152,6 +1153,7 @@ nav:
- ./api_reference/memory/simple_composable_memory.md
- ./api_reference/memory/vector_memory.md
- Metadata Extractors:
- ./api_reference/extractors/documentcontext.md
- ./api_reference/extractors/entity.md
- ./api_reference/extractors/index.md
- ./api_reference/extractors/keyword.md
Expand Down Expand Up @@ -1649,6 +1651,7 @@ nav:
- ./api_reference/tools/ionic_shopping.md
- ./api_reference/tools/jina.md
- ./api_reference/tools/load_and_search.md
- ./api_reference/tools/mcp.md
- ./api_reference/tools/metaphor.md
- ./api_reference/tools/multion.md
- ./api_reference/tools/neo4j.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.12.12"
__version__ = "0.12.13"

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.12"
version = "0.12.13"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
4 changes: 2 additions & 2 deletions llama-index-experimental/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-experimental"
readme = "README.md"
version = "0.5.2"
version = "0.5.3"

[tool.poetry.dependencies]
python = ">=3.10,<4.0"
llama-index-core = "^0.12.0"
llama-index-core = "^0.12.13"
llama-index-finetuning = "^0.3.0"
pandas = "*"

Expand Down
Loading

0 comments on commit 3cb06f8

Please sign in to comment.