-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add FalkorDB memory integration and tests * chore: Add FalkorDB memory integration and tests * Delete test_falkordb_memory.py * Delete poetry.lock * refactor: Replace clear method with hybridstore delete in FalkorDB memory integration tests * Restore notebooks
- Loading branch information
Showing
25 changed files
with
3,874 additions
and
344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from .falkordb_fact_memory import FalkorDBFactMemory | ||
from .falkordb_program_memory import FalkorDBProgramMemory | ||
from .falkordb_document_memory import FalkorDBDocumentMemory | ||
from .falkordb_trace_memory import FalkorDBTraceMemory | ||
|
||
__all__ = [ | ||
FalkorDBFactMemory, | ||
FalkorDBDocumentMemory, | ||
FalkorDBProgramMemory, | ||
FalkorDBTraceMemory | ||
] |
Oops, something went wrong.