deepagents-graph-memory 0.1.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,20 @@
1
+ # - Gives apps one place to import the main graph features.
2
+ # - Tests: test_vgs.py checks the public graph setup helpers;
3
+ # test_optional_vgs_dependency.py checks what happens without LadybugDB.
4
+
5
+ """Graph-backed memory backend for LangChain Deep Agents."""
6
+
7
+ from deepagents_graph_memory.backend import GraphMemoryBackend
8
+ from deepagents_graph_memory.paths import make_graph_subject
9
+ from deepagents_graph_memory.tools import graph_memory_tools
10
+ from deepagents_graph_memory.vgs import VFS_TOOL_NAMES, graph_context_middleware, register_vgs_harness_profile, vgs_harness_profile
11
+
12
+ __all__ = [
13
+ "GraphMemoryBackend",
14
+ "VFS_TOOL_NAMES",
15
+ "graph_context_middleware",
16
+ "graph_memory_tools",
17
+ "make_graph_subject",
18
+ "register_vgs_harness_profile",
19
+ "vgs_harness_profile",
20
+ ]