mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
## [0.9.0](https://github.com/Kaelio/ktx/compare/v0.8.0...v0.9.0) (2026-06-03) ### Features * add codex llm backend for ktx runtime work ([#253](https://github.com/Kaelio/ktx/issues/253)) ([494618a](494618ab14)) * **cli:** consistent connection setup recovery and build-time gate ([#257](https://github.com/Kaelio/ktx/issues/257)) ([ce1516b](ce1516b357)) * **cli:** guide next action at end of ktx setup, not reruns ([#256](https://github.com/Kaelio/ktx/issues/256)) ([45aa95d](45aa95d2cc)) * **cli:** stream plain ktx ingest progress to stderr (KLO-726) ([#251](https://github.com/Kaelio/ktx/issues/251)) ([13774bf](13774bfcef)) * **query-history:** scope mining to modeled schemas by default ([#258](https://github.com/Kaelio/ktx/issues/258)) ([e70ae1e](e70ae1e63b)) * **telemetry:** include error details for failures ([#254](https://github.com/Kaelio/ktx/issues/254)) ([6da8c34](6da8c3452a)) ### Bug Fixes * **ingest:** recover textual-conflict gate failures; fix query-history adapter ([#255](https://github.com/Kaelio/ktx/issues/255)) ([f5dea9a](f5dea9a089)) ### Other Changes * refresh star history chart [skip ci] ([9d3a0b7](9d3a0b751d)) * refresh star history chart [skip ci] ([74c6076](74c6076b72)) * refresh star history chart [skip ci] ([d01abe6](d01abe6f3c)) * revert repo references to Kaelio/ktx and remove rename-resilience ([#252](https://github.com/Kaelio/ktx/issues/252)) ([41e20c9](41e20c9ce7)), closes [#250](https://github.com/Kaelio/ktx/issues/250) [#250](https://github.com/Kaelio/ktx/issues/250)
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[project]
|
|
name = "ktx-daemon"
|
|
version = "0.9.0"
|
|
description = "Portable compute package for KTX semantic-layer operations"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
license = "Apache-2.0"
|
|
dependencies = [
|
|
"fastapi>=0.136.3",
|
|
"ktx-sl",
|
|
"lkml>=1.3.7",
|
|
"numpy>=2.4.6",
|
|
"orjson>=3.11.9",
|
|
"pandas>=3.0.3",
|
|
"posthog>=7.16.1",
|
|
"psycopg[binary]>=3.3.4",
|
|
"pydantic>=2.13.4",
|
|
"requests>=2.34.2",
|
|
"sqlglot>=30",
|
|
"uvicorn[standard]>=0.48.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
ktx-daemon = "ktx_daemon.__main__:main"
|
|
|
|
[project.optional-dependencies]
|
|
local-embeddings = [
|
|
"sentence-transformers>=5.1.1",
|
|
"torch>=2.2.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/kaelio/ktx"
|
|
Repository = "https://github.com/kaelio/ktx"
|
|
Issues = "https://github.com/kaelio/ktx/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ktx_daemon"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"httpx>=0.28.1",
|
|
"pytest>=9.0.2",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
ktx-sl = { workspace = true }
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|