haiku.rag 0.6.0__py3-none-any.whl → 0.7.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of haiku.rag might be problematic. Click here for more details.

@@ -8,7 +8,7 @@ class Document(BaseModel):
8
8
  Represents a document with an ID, content, and metadata.
9
9
  """
10
10
 
11
- id: int | None = None
11
+ id: str | None = None
12
12
  content: str
13
13
  uri: str | None = None
14
14
  metadata: dict = {}
@@ -1,5 +1,9 @@
1
- from haiku.rag.store.repositories.base import BaseRepository
2
1
  from haiku.rag.store.repositories.chunk import ChunkRepository
3
2
  from haiku.rag.store.repositories.document import DocumentRepository
3
+ from haiku.rag.store.repositories.settings import SettingsRepository
4
4
 
5
- __all__ = ["BaseRepository", "DocumentRepository", "ChunkRepository"]
5
+ __all__ = [
6
+ "ChunkRepository",
7
+ "DocumentRepository",
8
+ "SettingsRepository",
9
+ ]