dlightrag-memory 2.0.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.
@@ -0,0 +1,37 @@
1
+ # Copyright 2025-2026 Hanlian Lu. SPDX-License-Identifier: Apache-2.0
2
+ """Narrow host interface for independent Profile Memory."""
3
+
4
+ __version__ = "2.0.0"
5
+
6
+ from dlightrag_memory.errors import MemoryUnavailableError, MemoryWriteRejectedError
7
+ from dlightrag_memory.memory import Memory, RecallResult
8
+ from dlightrag_memory.models import (
9
+ MemoryKind,
10
+ MemoryOperation,
11
+ MemoryOperationAction,
12
+ MemoryOperationOutcome,
13
+ MemoryOperationReceipt,
14
+ MemoryOriginKind,
15
+ MemoryProvenance,
16
+ MemoryRecord,
17
+ MemoryStatus,
18
+ )
19
+ from dlightrag_memory.store import MemoryStore
20
+
21
+ __all__ = [
22
+ "Memory",
23
+ "MemoryKind",
24
+ "MemoryOperation",
25
+ "MemoryOperationAction",
26
+ "MemoryOperationOutcome",
27
+ "MemoryOperationReceipt",
28
+ "MemoryOriginKind",
29
+ "MemoryProvenance",
30
+ "MemoryRecord",
31
+ "MemoryStatus",
32
+ "MemoryStore",
33
+ "MemoryUnavailableError",
34
+ "MemoryWriteRejectedError",
35
+ "RecallResult",
36
+ "__version__",
37
+ ]
File without changes