mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
## [0.10.0](https://github.com/Kaelio/ktx/compare/v0.9.0...v0.10.0) (2026-06-08) ### Features * add GitHub star nudges to CLI build view and docs sidebar ([#271](https://github.com/Kaelio/ktx/issues/271)) ([795a974](795a97485a)) * **cli:** add channel-aware update notifier ([#265](https://github.com/Kaelio/ktx/issues/265)) ([698efdc](698efdcef8)) * **cli:** add ingest LLM rate-limit governor with paced retries ([#261](https://github.com/Kaelio/ktx/issues/261)) ([c3d8ced](c3d8cedb0b)) * **mysql:** implement columnStats using INFORMATION_SCHEMA.STATISTICS ([#233](https://github.com/Kaelio/ktx/issues/233)) ([18245c2](18245c2373)) * **setup:** apply per-role LLM model presets, remove --llm-model ([#268](https://github.com/Kaelio/ktx/issues/268)) ([2c18a62](2c18a62de4)) * **setup:** wizard prompt tweaks and quieter query-history filter output ([#259](https://github.com/Kaelio/ktx/issues/259)) ([c2beaf7](c2beaf7d55)) * **telemetry:** collect PostHog $exception error reports in CLI and daemon ([#262](https://github.com/Kaelio/ktx/issues/262)) ([fb7b94b](fb7b94b60e)) ### Bug Fixes * **docs-site:** stop doubling the /ktx basePath on alias-host redirects ([#263](https://github.com/Kaelio/ktx/issues/263)) ([d3e20df](d3e20df1d5)) * **ingest:** drive work-unit progress from tool calls, not turn counts ([#269](https://github.com/Kaelio/ktx/issues/269)) ([2896f9f](2896f9fb91)) * **sl:** stop baking drift-prone counts into overlay summaries ([#270](https://github.com/Kaelio/ktx/issues/270)) ([5232578](5232578d44)) * **telemetry:** preserve driver error class and code in connection_test ([#260](https://github.com/Kaelio/ktx/issues/260)) ([ec7edf8](ec7edf8f50)) ### Documentation * add serving-phase diagram to the introduction page ([#264](https://github.com/Kaelio/ktx/issues/264)) ([377f21a](377f21acd7)) * minor README and docs-site touch-ups ([#266](https://github.com/Kaelio/ktx/issues/266)) ([bf1fe97](bf1fe9748e)) * **site:** add Products dropdown to ktx docs navbar ([#267](https://github.com/Kaelio/ktx/issues/267)) ([dc39eb7](dc39eb7ef9)) ### Other Changes * refresh star history chart [skip ci] ([0d0ea55](0d0ea55184)) * refresh star history chart [skip ci] ([2914407](2914407f09)) * refresh star history chart [skip ci] ([d142274](d14227468b)) * refresh star history chart [skip ci] ([5a88210](5a8821073b)) * refresh star history chart [skip ci] ([8eb1cd3](8eb1cd3e79))
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[project]
|
|
name = "ktx-daemon"
|
|
version = "0.10.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"]
|