hippmem-py
Python bindings for HIPPMEM — native associative memory engine for AI agents.
Ecosystem: Rust engine · Python bindings · MCP server
Install
pip install hippmem
No GPU, API key, or network required — the deterministic fallback backend works offline.
Quick Start
from hippmem import Engine
# Hash embedder — offline, zero config (default)
engine = Engine.open()
engine.write("The user prefers Rust.", content_type="Preference")
engine.write("The user chose redb — pure Rust, fast compile.", content_type="Decision")
results = engine.retrieve("Why did the user choose redb?", top_k=3)
for r in results.results:
print(f"[{r.score:.3f}] {r.content}")
print(f" dimensions: {r.dimensions}")
engine.close()
Neural embedder (higher semantic accuracy)
engine = Engine.open(
embedder="neural",
api_base_url="https://api.openai.com/v1",
api_key="sk-...",
model="text-embedding-3-small",
)
Why associative memory?
Most memory solutions are vector databases — store embeddings, search by similarity. HIPPMEM discovers associations between memories at write time (entity, causal, temporal, semantic, topic) and retrieves via spreading activation over typed edges. The result: it remembers WHY, not just WHAT.
Documentation
| Document | Content |
|---|---|
| Quick Start | 5-minute setup and first run |
| API Reference | Method signatures and types |
| Configuration | Storage location, backend selection |
For deeper architecture and algorithm details, see the main HIPPMEM documentation.
Development
git clone https://github.com/hippmem/hippmem-py.git
cd hippmem-py
python3 -m venv .venv && source .venv/bin/activate
pip install maturin pytest
maturin develop
pytest
License
Apache 2.0. See LICENSE and COPYRIGHT.
The underlying hippmem-engine is AGPL-3.0-only. Importing hippmem-py does NOT subject your program to AGPL — only the engine crate itself is AGPL. See the HIPPMEM licensing overview.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hippmem-0.4.0.tar.gz.
File metadata
- Download URL: hippmem-0.4.0.tar.gz
- Upload date:
- Size: 42.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c568dcc53b08e343dedc0cdf6170d9824f915d0718a20524dd5c1e8df2714122
|
|
| MD5 |
8e1afa398343a173075d7902bca48ecc
|
|
| BLAKE2b-256 |
73b251e48e125a7aeac2de83528baaa91689d46c3a3309b4faff6f5cb00644d3
|
File details
Details for the file hippmem-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: hippmem-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011ec75afe630d0cdcb7500e4be4894ca4da30798b26be5c47c0dc82a408966a
|
|
| MD5 |
04d4468d0d45532abdf72b7435815f63
|
|
| BLAKE2b-256 |
f9d516a3d8df89e30f0f0cb808d561af5f99544bd7fa152b481fcfb79d9b25fc
|