Skip to main content

Lightweight, embedded graph-based memory system for AI applications

Project description

KuzuMemory

Python 3.11+ License: MIT Tests

Lightweight, embedded graph-based memory system for AI applications

KuzuMemory provides fast, offline memory capabilities for chatbots and AI systems without requiring LLM calls. It uses pattern matching and local graph storage to remember and recall contextual information.

โœจ Key Features

  • ๐Ÿง  Cognitive Memory Model - Based on human memory psychology (SEMANTIC, PROCEDURAL, EPISODIC, etc.)
  • ๐Ÿš€ No LLM Dependencies - Operates using pattern matching and local NER only
  • โšก Fast Performance - <3ms memory recall, <8ms memory generation (verified with Kuzu)
  • ๐Ÿ’พ Embedded Database - Single-file Kuzu graph database
  • ๐Ÿ”„ Git-Friendly - Database files <10MB, perfect for version control
  • ๐Ÿ”Œ Simple API - Just two methods: attach_memories() and generate_memories()
  • ๐ŸŒ Cross-Platform - Standardized cognitive types shared with TypeScript implementation
  • ๐Ÿ“ฑ Offline First - Works completely without internet connection
  • ๐Ÿ”ง MCP Ready - Native Claude Desktop integration with async learning support
  • ๐Ÿค– Hook System - Automatic Claude Code integration using hooks (UserPromptSubmit, Stop)
  • ๐Ÿ‘ค User-Level Memory - Cross-project ~/.kuzu-memory/user.db automatically aggregates your best patterns and rules across all projects

๐Ÿš€ Quick Start

Installation

# Install via pipx (recommended for CLI usage)
pipx install kuzu-memory

# Or install via pip
pip install kuzu-memory

# For development
pip install kuzu-memory[dev]

Now available on PyPI! KuzuMemory v1.7.0 is published and ready for production use.

Smart Setup (Recommended - ONE Command!)

The easiest way to get started is with the smart setup command:

# Navigate to your project directory
cd /path/to/your/project

# Run smart setup - auto-detects and configures everything
kuzu-memory setup

# That's it! The setup command will:
# โœ… Initialize the memory database
# โœ… Detect your AI tools (Claude Code, Cursor, VS Code, etc.)
# โœ… Install/update integrations automatically
# โœ… Verify everything is working

Options:

# Preview what would happen (dry run)
kuzu-memory setup --dry-run

# Setup for specific AI tool
kuzu-memory setup --integration claude-code

# Initialize only (skip AI tool installation)
kuzu-memory setup --skip-install

# Force reinstall everything
kuzu-memory setup --force

Manual Installation (Advanced Users)

If you need granular control, KuzuMemory can be installed manually with various AI systems following the ONE PATH principle:

# Install Claude Code integration (MCP + hooks)
kuzu-memory install claude-code

# Install Claude Desktop integration (MCP only)
kuzu-memory install claude-desktop

# Install Codex integration (MCP only)
kuzu-memory install codex

# Install Cursor IDE integration (MCP only)
kuzu-memory install cursor

# Install VS Code integration (MCP only)
kuzu-memory install vscode

# Install Windsurf IDE integration (MCP only)
kuzu-memory install windsurf

# Install Auggie integration (rules)
kuzu-memory install auggie

# Uninstall an integration
kuzu-memory uninstall claude-code

Available Integrations (ONE command per system):

  • claude-code - Claude Code IDE with MCP + hooks (complete integration)
  • claude-desktop - Claude Desktop app with MCP server (global memory)
  • codex - Codex IDE with MCP server (global configuration)
  • cursor - Cursor IDE with MCP server
  • vscode - VS Code with Claude extension (MCP server)
  • windsurf - Windsurf IDE with MCP server
  • auggie - Auggie AI with rules integration

Key Differences:

Claude Code (claude-code):

  • Configuration: Creates .kuzu-memory/config.yaml in project directory
  • Database: Initializes project database in .kuzu-memory/memorydb/
  • Memory Scope: Each project has isolated memory
  • Hook System: Automatic enhancement (UserPromptSubmit) and learning (Stop)
  • Use Case: Project-specific context and memories
  • Sharing: Memory can be committed to git for team collaboration

Claude Desktop (claude-desktop):

  • Configuration: Creates ~/.kuzu-memory/config.yaml in home directory
  • Database: Initializes global database in ~/.kuzu-memory/memorydb/
  • Memory Scope: Shared across all Claude Desktop conversations
  • Use Case: Personal knowledge base and preferences
  • Installation: Auto-detects pipx or home directory installation

Codex (codex):

  • Configuration: Creates ~/.codex/config.toml in home directory (TOML format)
  • Database: Uses project-specific database via environment variables
  • Memory Scope: Global configuration, project-specific memory
  • Use Case: Codex IDE integration with MCP protocol
  • Format: Uses snake_case mcp_servers convention (TOML)

Auggie (auggie):

  • Configuration: Creates .augment/rules/ directory with enhanced integration rules
  • Version: v2.0.0 with automatic version detection and migration
  • Auto-Migration: Automatically upgrades from v1.0.0 to v2.0.0 with backup
  • Backup: Creates backup at .augment/backups/v{version}_{timestamp}/ before upgrade
  • Rules: Enhanced rules based on Claude Code hooks v1.4.0 insights including:
    • Success metrics (2-5 memories per query, <100ms response)
    • Decision tree for when to store vs skip information
    • Deduplication patterns (SHA256 hashing, TTL caching)
    • Performance optimization (batching, targeted filtering)
    • Failure recovery protocols (graceful degradation)
  • Files Created: AGENTS.md, .augment/rules/kuzu-memory-integration.md, .augment/rules/memory-quick-reference.md
  • Version Tracking: Maintains version at .augment/.kuzu-version
  • Use Case: Rules-based AI instruction integration (Auggie reads rules and decides when to act)

Installation Options:

  • --force - Force reinstall even if already installed (overwrites existing config)
  • --dry-run - Preview changes without modifying files
  • --verbose - Show detailed installation steps
  • --mode [auto|pipx|home] - Override auto-detection (claude-desktop only)
  • --backup-dir PATH - Custom backup directory
  • --memory-db PATH - Custom memory database location

Automatic Initialization:

  • Configuration files are created automatically during installation
  • Database is initialized automatically
  • Existing configurations are preserved (use --force to overwrite)
  • Backups are created when overwriting existing files

See Claude Setup Guide for detailed instructions on Claude Desktop and Claude Code integration.

Note: Previous installer names (e.g., claude-desktop-pipx, claude-desktop-home) still work but show deprecation warnings.

Basic Usage

from kuzu_memory import KuzuMemory

# Initialize memory system
memory = KuzuMemory()

# Store memories from conversation
memory.generate_memories("""
User: My name is Alice and I work at TechCorp as a Python developer.
Assistant: Nice to meet you, Alice! Python is a great choice for development.
""")

# Retrieve relevant memories
context = memory.attach_memories("What's my name and where do I work?")

print(context.enhanced_prompt)
# Output includes: "Alice", "TechCorp", "Python developer"

CLI Usage

# Initialize memory database
kuzu-memory init

# Store a memory
kuzu-memory memory store "I prefer using TypeScript for frontend projects"

# Recall memories
kuzu-memory memory recall "What do I prefer for frontend?"

# Enhance a prompt
kuzu-memory memory enhance "What's my coding preference?"

# View statistics
kuzu-memory status

Keeping KuzuMemory Updated

Check for updates:

kuzu-memory update --check-only

Check and upgrade:

kuzu-memory update

Include pre-releases:

kuzu-memory update --pre

Silent check (for scripts/cron):

kuzu-memory update --check-only --quiet
# Exit code 0 = up to date, 2 = update available

JSON output for automation:

kuzu-memory update --check-only --format json

The update command queries PyPI for the latest version and uses pip to upgrade. It's safe to run anytime and will preserve your database and configuration files.

Repair Command

Auto-fix broken MCP configurations:

If your MCP server fails to start due to configuration issues, the repair command can automatically fix common problems:

# Auto-detect and repair all installed systems
kuzu-memory repair

# Show detailed repair information
kuzu-memory repair --verbose

What it fixes:

  • Broken ["mcp", "serve"] args โ†’ ["mcp"] (common MCP server startup issue)
  • Auto-detects Claude Code, Claude Desktop, Cursor, VS Code, Windsurf configurations
  • Creates backups before making changes
  • Shows clear before/after comparison

When to use:

  • MCP server fails to start with args-related errors
  • After upgrading from older versions
  • When integrations stop working unexpectedly

See Troubleshooting Guide for more repair scenarios.

Git History Sync

Automatically import project commit history as memories:

# Smart sync (auto-detects initial vs incremental)
kuzu-memory git sync

# Force full resync
kuzu-memory git sync --initial

# Preview without storing
kuzu-memory git sync --dry-run

# View sync configuration
kuzu-memory git status

# Install automatic sync hook
kuzu-memory git install-hooks

What gets synced: Commits with semantic prefixes (feat:, fix:, refactor:, perf:) from main, master, develop, feature/, bugfix/ branches.

Retention: Git commits are stored as EPISODIC memories (30-day retention).

Deduplication: Running sync multiple times won't create duplicates - each commit SHA is stored once.

See Git Sync Guide for detailed documentation.

๐Ÿ“– Core Concepts

Cognitive Memory Types

KuzuMemory uses a cognitive memory model inspired by human memory systems:

  • SEMANTIC - Facts and general knowledge (never expires)
  • PROCEDURAL - Instructions and how-to content (never expires)
  • PREFERENCE - User/team preferences (never expires)
  • EPISODIC - Personal experiences and events (30 days)
  • WORKING - Current tasks and immediate focus (1 day)
  • SENSORY - Sensory observations and descriptions (6 hours)

Cognitive Classification

KuzuMemory automatically classifies memories into cognitive types based on content patterns, providing intuitive categorization that mirrors human memory systems. This standardized model ensures compatibility across Python and TypeScript implementations.

Pattern-Based Extraction

No LLM required! KuzuMemory uses regex patterns to identify and store memories automatically:

# Automatically detected patterns
"Remember that we use Python for backend"     # โ†’ EPISODIC memory
"My name is Alice"                            # โ†’ SEMANTIC memory
"I prefer dark mode"                          # โ†’ PREFERENCE memory
"Always use type hints"                       # โ†’ PROCEDURAL memory
"Currently debugging the API"                 # โ†’ WORKING memory
"The interface feels slow"                    # โ†’ SENSORY memory

Important: For pattern matching to work effectively, content should include clear subject-verb-object structures. Memories with specific entities, actions, or preferences are extracted more reliably than abstract statements.

Knowledge Types

Every memory carries a knowledge_type โ€” an orthogonal label that governs retrieval categorization (separate from the cognitive MemoryType which governs retention):

Type When to use Auto-promoted to user DB?
rule Hard constraints: "always use RLock for re-entrant locks" โœ…
pattern Repeatable solutions: "use Repository pattern for DB access" โœ…
gotcha Pitfalls to avoid: "Kuzu single-writer โ€” serialise with a lock" โœ…
architecture Structural decisions: "SOA with dependency injection" โœ…
convention Style preferences: "snake_case for Python, camelCase for JS" โŒ (project-only)
note Everything else (default) โŒ (project-only)

๐Ÿ—‚๏ธ Memory Scopes: Project vs User

KuzuMemory supports two complementary scopes that work together:

Project Scope (default)

Each project gets its own isolated database at .kuzu-memory/memories.db. Memories are project-specific โ€” coding patterns, decisions, and context for that codebase only.

my-api/
โ””โ”€โ”€ .kuzu-memory/
    โ””โ”€โ”€ memories.db   โ† project memories (git-ignored)

This is the default. No configuration required.

User Scope

When you enable user mode, KuzuMemory automatically promotes high-quality memories from every project session into a shared ~/.kuzu-memory/user.db. These are your best cross-project patterns โ€” rules and gotchas that apply everywhere.

~/.kuzu-memory/
โ””โ”€โ”€ user.db           โ† aggregated patterns from all projects

Promotion criteria (applied at session end):

  • knowledge_type โˆˆ rule | pattern | gotcha | architecture
  • importance โ‰ฅ 0.8
  • Deduplicated by content hash โ€” no duplicates accumulate

Enable user mode:

# Initialize user DB and enable automatic promotion
kuzu-memory user setup

# Check what's been aggregated
kuzu-memory user status

# Manually promote from current project (useful for backfilling)
kuzu-memory user promote

# Preview without writing
kuzu-memory user promote --dry-run

# Return to project-only mode (user DB is preserved)
kuzu-memory user disable

At session start, the MCP server merges relevant user-level patterns into your project context automatically via the kuzu_user_context tool โ€” so the lesson you learned in my-api is available when you start work on my-worker.

Scope Comparison

Project DB User DB
Location .kuzu-memory/memories.db ~/.kuzu-memory/user.db
Scope Single project All projects
Lifetime Lives with the repo Permanent, user-owned
Contents All memory types High-importance rules, patterns, gotchas, architecture
Populated by Hooks + MCP tools Auto-promotion at session end
Default โœ… Always active โŒ Opt-in via user setup

๐Ÿ—๏ธ Architecture

High-Level Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   Your App      โ”‚    โ”‚   KuzuMemory     โ”‚    โ”‚   Kuzu Graph    โ”‚
โ”‚                 โ”‚    โ”‚                  โ”‚    โ”‚   Database      โ”‚
โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚    โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚    โ”‚                 โ”‚
โ”‚ โ”‚  Chatbot    โ”‚โ”€โ”ผโ”€โ”€โ”€โ”€โ”ผโ†’โ”‚attach_memoriesโ”‚โ”€โ”ผโ”€โ”€โ”€โ”€โ”ผโ†’ Query Engine   โ”‚
โ”‚ โ”‚             โ”‚ โ”‚    โ”‚ โ”‚              โ”‚ โ”‚    โ”‚                 โ”‚
โ”‚ โ”‚             โ”‚ โ”‚    โ”‚ โ”‚generate_     โ”‚ โ”‚    โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚ โ”‚             โ”‚โ”€โ”ผโ”€โ”€โ”€โ”€โ”ผโ†’โ”‚memories      โ”‚โ”€โ”ผโ”€โ”€โ”€โ”€โ”ผโ†’โ”‚ Pattern     โ”‚ โ”‚
โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚    โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚    โ”‚ โ”‚ Extraction  โ”‚ โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
                                               โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Service-Oriented Architecture (v1.5+)

KuzuMemory uses a service layer architecture with dependency injection for clean separation of concerns:

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    ServiceManager                           โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”      โ”‚
โ”‚  โ”‚MemoryService โ”‚  โ”‚GitSyncServiceโ”‚  โ”‚DiagnosticSvc โ”‚      โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚                  โ”‚                  โ”‚
         โ–ผ                  โ–ผ                  โ–ผ
    IMemoryService    IGitSyncService   IDiagnosticService
    (Protocol)        (Protocol)        (Protocol)

Key Benefits:

  • โœ… 16.63% faster than direct instantiation (Phase 5 verified)
  • โœ… Easy testing via protocol-based mocking
  • โœ… Consistent lifecycle management with context managers
  • โœ… Resource safety - automatic cleanup prevents leaks

For Developers:

๐Ÿ”ง Configuration

Create .kuzu_memory/config.yaml:

version: 1.0

storage:
  max_size_mb: 50
  auto_compact: true

recall:
  max_memories: 10
  strategies:
    - keyword
    - entity
    - temporal

patterns:
  custom_identity: "I am (.*?)(?:\\.|$)"
  custom_preference: "I always (.*?)(?:\\.|$)"

๐Ÿ“Š Performance

Operation Target Typical Verified
Memory Recall <100ms ~3ms โœ…
Memory Generation <200ms ~8ms โœ…
Database Size <500 bytes/memory ~300 bytes โœ…
RAM Usage <50MB ~25MB โœ…
Async Learning Smart wait 5s default โœ…

๐Ÿงช Testing

Quick Start

# Install development dependencies
pip install -e ".[dev]"

# Run all tests
pytest

# Run benchmarks
pytest tests/ -m benchmark

# Check coverage
pytest --cov=kuzu_memory

MCP Testing & Diagnostics

KuzuMemory includes comprehensive MCP server testing and diagnostic tools:

# Run MCP test suite (151+ tests)
pytest tests/mcp/ -v

# Run PROJECT-LEVEL diagnostics (checks project files only)
kuzu-memory doctor

# Quick health check
kuzu-memory doctor health

# MCP-specific diagnostics
kuzu-memory doctor mcp

# Test database connection
kuzu-memory doctor connection

# Performance benchmarks
pytest tests/mcp/performance/ --benchmark-only

Test Coverage:

  • Unit Tests (51+ tests) - Protocol and component validation
  • Integration Tests - Multi-step operations and workflows
  • E2E Tests - Complete user scenarios
  • Performance Tests (78 tests) - Latency, throughput, memory profiling
  • Compliance Tests (73 tests) - JSON-RPC 2.0 and MCP protocol

Diagnostic Tools (Project-Level Only):

  • Configuration validation with auto-fix
  • Connection testing with latency monitoring
  • Tool validation and execution testing
  • Continuous health monitoring
  • Performance regression detection

Note: The doctor command checks PROJECT-LEVEL configurations only:

  • โœ… Project memory database (kuzu-memory/)
  • โœ… Claude Code MCP config (.claude/config.local.json)
  • โœ… Claude Code hooks (if configured)
  • โŒ Does NOT check Claude Desktop (use kuzu-memory install claude-desktop instead)

See MCP Testing Guide and MCP Diagnostics Reference for complete documentation.

๐Ÿฉบ System Diagnostics

The kuzu-memory doctor command provides comprehensive health checks and diagnostics for your project-level KuzuMemory installation.

Quick Start

# Run full diagnostics (interactive, 29 checks)
kuzu-memory doctor

# Auto-fix detected issues (non-interactive)
kuzu-memory doctor --fix

# Quick health check
kuzu-memory doctor health

# MCP-specific diagnostics
kuzu-memory doctor mcp

# Test database connection
kuzu-memory doctor connection

# Selective testing
kuzu-memory doctor --no-server-lifecycle  # Skip server checks
kuzu-memory doctor --no-hooks            # Skip hooks checks

# JSON output for automation
kuzu-memory doctor --format json > diagnostics.json

# Save report to file
kuzu-memory doctor --output report.html --format html

New in v1.4.x:

  • --fix flag for automatic issue resolution
  • Multiple output formats (text, JSON, HTML)
  • Focused diagnostic commands (health, mcp, connection)
  • Enhanced error messages with fix suggestions

What Gets Tested

Configuration Checks (11):

  • Database directory and file
  • Project metadata files (PROJECT.md, README.md)
  • Hook scripts and configuration
  • Claude Code settings (.claude/config.local.json)
  • MCP server configuration

Hooks Diagnostics (12):

  • Hook configuration validation
  • Event name validation (UserPromptSubmit, Stop)
  • Command path verification
  • Hook execution tests (session-start, enhance, learn)
  • Environment validation (logs, cache, project root)

Server Lifecycle Checks (7):

  • Server startup validation
  • Health checks (ping, protocol, tools)
  • Graceful shutdown
  • Resource cleanup (zombie process detection)
  • Restart/recovery capability

Performance Metrics:

  • Startup time
  • Protocol latency
  • Throughput testing

Understanding Results

Severity Levels:

  • โœ… SUCCESS: Check passed
  • โ„น๏ธ INFO: Informational message (not an error)
  • โš ๏ธ WARNING: Issue found but not critical
  • โŒ ERROR: Problem that should be fixed
  • ๐Ÿ”ด CRITICAL: Serious issue requiring immediate attention

Auto-Fix Suggestions: Most failures include a "Fix:" suggestion with a specific command to resolve the issue.

Performance Benchmarks

From QA testing:

  • Full diagnostics: ~4.5 seconds (29 checks)
  • Hooks only: ~1.6 seconds (12 checks)
  • Server only: ~3.0 seconds (7 checks)
  • Core only: ~0.25 seconds (11 checks)

Troubleshooting

Common Issues:

  1. MCP server not configured (INFO)

    • Fix: kuzu-memory install add claude-code
  2. Hook executable not found (ERROR)

    • Fix: kuzu-memory install add claude-code --force
  3. Database not initialized (CRITICAL)

    • Fix: kuzu-memory init or reinstall

Exit Codes

  • 0: All checks passed (or INFO level only)
  • 1: Some checks failed

See Diagnostics Reference for detailed check documentation.

๐Ÿค Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Development Setup

git clone https://github.com/kuzu-memory/kuzu-memory
cd kuzu-memory
pip install -e ".[dev]"
pre-commit install

๐Ÿ“„ License

MIT License - see LICENSE file for details.

๐Ÿ”— Links

๐Ÿ™ Acknowledgments

Project details


Release history Release notifications | RSS feed

This version

1.9.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kuzu_memory-1.9.0.tar.gz (545.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kuzu_memory-1.9.0-py3-none-any.whl (603.0 kB view details)

Uploaded Python 3

File details

Details for the file kuzu_memory-1.9.0.tar.gz.

File metadata

  • Download URL: kuzu_memory-1.9.0.tar.gz
  • Upload date:
  • Size: 545.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for kuzu_memory-1.9.0.tar.gz
Algorithm Hash digest
SHA256 ce78b0802fb319faa2ded5de1974e973554a20d1d0837b3533998cfa9bf5e878
MD5 dcfc4f0214879246e0450fd6e61439bf
BLAKE2b-256 e227acf0f1baf139b556d16b0674bf093bf150f3e57190558b40e2e684b547a7

See more details on using hashes here.

File details

Details for the file kuzu_memory-1.9.0-py3-none-any.whl.

File metadata

  • Download URL: kuzu_memory-1.9.0-py3-none-any.whl
  • Upload date:
  • Size: 603.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for kuzu_memory-1.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9bdbd6b579a8c935f9987b7695eb44ed64c1fb03404d306361dd1b83d19ff2be
MD5 e8bc146389cd59515d2d6dda9c113c56
BLAKE2b-256 e8e33429856d920b824047f7a384bc6af8315eb2f0a3d3f15a56b6195f421ebb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page