Add your description here
Project description
AIMemoryOS
A powerful, modular, multi-store memory layer for conversational agents and LLM applications.
AIMemoryOS combines vector retrieval, graph knowledge bases, and highly-durable structured storage to give your AI agents a robust, scalable long-term memory that you can plug and play directly into your own applications.
Features
- Multi-Store Architecture: Coordinated state across SQLite (append-only events), DuckDB (canonical relational state), FAISS (vector similarity), and KuzuDB (graph relationships).
- Advanced Ingestion: End-to-end pipeline with preprocessing, PII stripping, SHA-256 deduplication, and semantic chunking.
- Rich Retrieval: Context assembly from multiple sources, reranking, and trace scoring.
- Coordinated Pruning: Safely
forget()memories with guaranteed cleanup across all storage backends without violating relational integrity. - Snapshotting: Take portable, verified SQLite backups of your system's event history instantly.
- Hallucination Firewall: Isolate "hypothesized" or "imagined" memories to separate tables so they don't pollute your agent's ground-truth recall.
Installation
AIMemoryOS relies on powerful machine learning models under the hood. Make sure you have at least 2GB of free disk space before installing, as it will download heavy dependencies like PyTorch, FAISS, and HuggingFace Transformers.
Install AIMemoryOS via pip directly into your project:
pip install aimemoryos
After installation, you must download the default SpaCy NLP model used for entity extraction:
python -m spacy download en_core_web_sm
Quickstart (Plug & Play)
The easiest way to integrate AIMemoryOS into your codebase is by using the Memory facade. Simply import it into your application and start saving/retrieving knowledge.
import asyncio
from pathlib import Path
from aimemoryos import Memory
async def run():
# Initialize the high-level memory facade
memory = Memory()
# 1. Ingest information into the memory pipeline
print("Ingesting memory...")
await memory.save(
document_id="doc_001",
content="My favorite programming language is Python and I love pizza."
)
# 2. Retrieve relevant context based on semantic similarity
print("Retrieving context...")
results = memory.retrieve(
query="What foods do I like?",
top_k=5,
score_threshold=0.2
)
# Results include the content, metadata, and relevance score
for r in results:
print(f"[{r['score']:.2f}] {r['metadata']['content']}")
# 3. Forget a memory across all stores (DuckDB, FAISS, Graph, SQLite)
if results:
memory_id = results[0]["metadata"]["memory_id"]
await memory.forget(memory_id=memory_id)
# 4. Take a verifiable snapshot of the entire event history
await memory.snapshot(output_path=Path("backups/memory_snapshot.sqlite"))
if __name__ == "__main__":
asyncio.run(run())
Configuration
By default, runtime databases and indexes are stored in the .aimemoryos/ folder at the root of the installed package. You can easily override this globally if you want your data saved elsewhere:
export AIMEMORYOS_DATA_DIR="/path/to/custom/data"
Architecture / Project Layout
For those interested in extending the SDK or contributing, the folder architecture is maintained as follows:
agents/: SDK-facing components. ContainsMemoryClient, which is the primary unified interface to the ecosystem.main.py: A lightweight, backwards-compatible wrapper aroundMemoryClientfor immediate plug-and-play.core/runtime.py: The composition root. Handles dependency injection, configuration, and instantiating storage/retrieval services.ingestion/: Text preprocessing, SHA deduplication, routing, and chunking boundaries.retrieval/: Similarity search, vector reranking, andContextBuilderlogic.storage/: Highly durable persistence backends (duckdb_store.py,faiss_store.py,sqlite_log.py) and theorchestrator.py.vector/: Embedding generation (sentence-transformers) and model management.graph/: KuzuDB ontology and schema definitions.
Contributing
We welcome contributions! To set up for local development:
git clone https://github.com/your-org/aimemoryos.git
cd aimemoryos
pip install -e .
pytest -q
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 aimemoryos-0.1.0-py3-none-any.whl.
File metadata
- Download URL: aimemoryos-0.1.0-py3-none-any.whl
- Upload date:
- Size: 90.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
744873a77f3f3fdea509a43a646cdfd4b04c1749e5275576dbee6e5d713b94f4
|
|
| MD5 |
53c52ff3df8db9cd7765fe18e38d3a93
|
|
| BLAKE2b-256 |
7dcf6ccf39ef407b64c1cd609bf18c3ecc477d092beb5c53b06a60821053198a
|