refactor chunking and embedding into their own modules
build / build (push) Successful in 45s
pytest / pytest (push) Successful in 26s

This commit is contained in:
2026-05-01 11:01:30 +02:00
parent 26df98c08e
commit fb62d1b539
8 changed files with 18 additions and 8 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ dependencies = [
chromy = "chromy.main:main"
[tool.setuptools]
packages = ["chromy", "chromy.handlers"]
packages = ["chromy", "chromy.chunking", "chromy.embedding", "chromy.handlers"]
[dependency-groups]
dev = [
@@ -72,7 +72,7 @@ module = [
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "chromy.chunk_functions"
module = "chromy.chunking.service"
disable_error_code = [
"attr-defined",
]