This commit is contained in:
Yiorgis Gozadinos 2025-09-22 13:56:16 +03:00
parent a1cd64de2f
commit b46765e197
No known key found for this signature in database
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
name = "haiku.rag" name = "haiku.rag"
description = "Agentic Retrieval Augmented Generation (RAG) with LanceDB" description = "Agentic Retrieval Augmented Generation (RAG) with LanceDB"
version = "0.10.0" version = "0.10.1"
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }] authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
license = { text = "MIT" } license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" } readme = { file = "README.md", content-type = "text/markdown" }

View file

@ -55,8 +55,8 @@ def run_pending_upgrades(store: Store, from_version: str, to_version: str) -> No
from .v0_9_3 import upgrade_fts_phrase as upgrade_0_9_3_fts # noqa: E402 from .v0_9_3 import upgrade_fts_phrase as upgrade_0_9_3_fts # noqa: E402
from .v0_9_3 import upgrade_order as upgrade_0_9_3_order # noqa: E402 from .v0_9_3 import upgrade_order as upgrade_0_9_3_order # noqa: E402
from .v0_10_2 import upgrade_add_title as upgrade_0_10_2_add_title # noqa: E402 from .v0_10_1 import upgrade_add_title as upgrade_0_10_1_add_title # noqa: E402
upgrades.append(upgrade_0_9_3_order) upgrades.append(upgrade_0_9_3_order)
upgrades.append(upgrade_0_9_3_fts) upgrades.append(upgrade_0_9_3_fts)
upgrades.append(upgrade_0_10_2_add_title) upgrades.append(upgrade_0_10_1_add_title)

View file

@ -58,7 +58,7 @@ def _apply_add_document_title(store: Store) -> None:
upgrade_add_title = Upgrade( upgrade_add_title = Upgrade(
version="0.10.2", version="0.10.1",
apply=_apply_add_document_title, apply=_apply_add_document_title,
description="Add nullable 'title' column to documents table", description="Add nullable 'title' column to documents table",
) )

View file

@ -1111,7 +1111,7 @@ wheels = [
[[package]] [[package]]
name = "haiku-rag" name = "haiku-rag"
version = "0.10.0" version = "0.10.1"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "docling" }, { name = "docling" },