Extended the ProllyTree Python API with two major new components - #80
Merged
Conversation
🧠 Agent Memory System New Classes Added: - AgentMemorySystem - Comprehensive memory system for AI agents - MemoryType - Enum for different memory types (ShortTerm, Semantic, Episodic, Procedural) Key Features: - Short-term Memory: Conversation history with thread-based organization - Semantic Memory: Facts and knowledge about entities with confidence scores - Procedural Memory: Task procedures and instructions with prerequisites - Git-backed Persistence: All memories are version-controlled - Memory Optimization: Cleanup, consolidation, and archival capabilities - Checkpointing: Create memory snapshots with commit messages 🗃️ VersionedKvStore New Classes Added: - VersionedKvStore - Git-backed versioned key-value store - StorageBackend - Enum for storage types (InMemory, File, Git) Key Features: - Git Integration: Full version control with branching, commits, and history - Staging Area: Git-like workflow for changes before committing - Branch Management: Create, switch, and list branches - Commit History: Track all changes with author and timestamp info - Multi-Backend Support: Currently exposes Git backend (others available in Rust)
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🧠 Agent Memory System
New Classes Added:
Key Features:
🗃️ VersionedKvStore
New Classes Added:
Key Features: