This commit is contained in:
Yiorgis Gozadinos 2026-02-10 13:29:30 +02:00
parent 8bae858626
commit aaa9b6a32f
No known key found for this signature in database
5 changed files with 10 additions and 7 deletions

View file

@ -1,9 +1,12 @@
# Changelog
## [Unreleased]
## [0.29.1] - 2026-02-10
### Fixed
- **Document listing memory usage**: `list_documents` no longer loads full document content and docling blobs by default, preventing out-of-memory errors on large databases. Use `include_content=True` when content is needed.
- **Chat session_id not persisting across AG-UI requests**: `ChatSessionState.session_id` now defaults to `""` instead of auto-generating a UUID. This ensures the session_id assignment is detected as a state change and included in the `StateDeltaEvent` delta, allowing clients to persist it across requests.
## [0.29.0] - 2026-02-06

View file

@ -2,7 +2,7 @@
name = "haiku.rag-evals"
description = "Benchmarking and evaluation scripts for haiku.rag"
version = "0.29.0"
version = "0.29.1"
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
license = { text = "MIT" }
requires-python = ">=3.12"

View file

@ -2,7 +2,7 @@
name = "haiku.rag-slim"
description = "Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling - Minimal dependencies"
version = "0.29.0"
version = "0.29.1"
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }

View file

@ -2,7 +2,7 @@
name = "haiku.rag"
description = "Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling"
version = "0.29.0"
version = "0.29.1"
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }
@ -30,7 +30,7 @@ classifiers = [
]
dependencies = [
"haiku.rag-slim[docling,voyageai,mxbai,cohere,zeroentropy,tui]==0.29.0",
"haiku.rag-slim[docling,voyageai,mxbai,cohere,zeroentropy,tui]==0.29.1",
]
[project.scripts]

View file

@ -1285,7 +1285,7 @@ wheels = [
[[package]]
name = "haiku-rag"
version = "0.29.0"
version = "0.29.1"
source = { editable = "." }
dependencies = [
{ name = "haiku-rag-slim", extra = ["cohere", "docling", "mxbai", "tui", "voyageai", "zeroentropy"] },
@ -1340,7 +1340,7 @@ dev = [
[[package]]
name = "haiku-rag-evals"
version = "0.29.0"
version = "0.29.1"
source = { editable = "evaluations" }
dependencies = [
{ name = "datasets" },
@ -1363,7 +1363,7 @@ requires-dist = [
[[package]]
name = "haiku-rag-slim"
version = "0.29.0"
version = "0.29.1"
source = { editable = "haiku_rag_slim" }
dependencies = [
{ name = "docling-core" },