feat(vector): Automatic indexing of documents in s3 storage

This commit is contained in:
Björn Benouarets
2026-01-30 22:38:08 +01:00
commit e60eb297fe
15 changed files with 1026 additions and 0 deletions

5
vector/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .chunk import Chunks, Chunk
from .client import EmbeddedClient
from .qdrant import Qdrant
__all__ = ["Chunks", "Chunk", "EmbeddedClient", "Qdrant"]