New:Microsoft Teams Notifications Are Now Available in Socket.Learn more β†’
Get Started

agent-memory-sdk

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-memory-sdk

Persistent semantic memory for AI agents with replay, restore, verify, and ignore decisions

pipPyPI
Version
0.1.5
Weekly downloads
88
Maintainers
1
Created

Agent Memory

CI Python 3.10+ License: MIT PyPI version

Persistent semantic memory for AI agents with intelligent decision-making.

Agent Memory CLI demo: exact query replays, shared-word trap correctly returns none

πŸš€ Created by: TheProdSDE

The problem

Most AI memory systems retrieve and inject past context into every prompt. This leads to wasted tokens, inconsistent responses, and agents that blindly replay stale or wrong answers.

Agent Memory adds a decision layer:

flowchart TD
    A[User Query] --> B[Resolve Memory]
    B --> C[Decision Engine]
    C -->|High confidence match| D[πŸ”„ Replay β€” return stored answer]
    C -->|Moderate match| E[πŸ“‹ Restore β€” inject as context]
    C -->|Needs validation| F[βœ… Verify β€” validate before reuse]
    C -->|No match| G[❌ None β€” answer from scratch]

    style D fill:#0d47a1,color:#fff
    style E fill:#e65100,color:#fff
    style F fill:#1b5e20,color:#fff
    style G fill:#b71c1c,color:#fff

Every resolve() returns an explicit action with a scored, explainable rationale β€” not just a retrieved chunk. Adversarial eval: 25/25 (100%) on trap queries β€” see benchmarks.

When to use it β€” real use cases

Use caseWithout memoryWith Agent MemorySaving
Support bot handling 10k identical FAQ queries/dayEvery query costs 1 LLM call~75% REPLAY on repeated questions, 0 LLM calls75% cost reduction
Coding agent that re-derives project conventions each sessionWastes 2–5 LLM calls per session to "remember" conventionsWorkflows are REPLAYED instantly on first queryNo re-derivation overhead
Research agent building knowledge over multiple sessionsEach session starts cold; re-reads the same sourcesFacts and summaries are RESTORED as contextPersistent cross-session knowledge
Customer onboarding bot answering the same steps repeatedlyAlways generates a responseHigh-confidence workflows are REPLAYED verbatimConsistent identical answers
Tool-output caching for expensive API callsCalls the external API every timeResults stored with TTL; REPLAY within TTL, re-call afterReduced external API cost
Policy-compliance agent that must verify facts before replayingSilent hallucination risk on stale datarequires_verification=True ensures VERIFY fires; stale facts are never replayed silentlyAuditability + safety

Where Agent Memory saves real money

A GPT-4o call costs ~$0.005. A support agent handling 50,000 queries/day with 70% repeat rate:

  • Without memory: 50,000 Γ— $0.005 = $250/day
  • With Agent Memory: 15,000 LLM calls + cache misses = $75/day
  • Saving: $175/day ($64k/year)

A REPLAY costs ~0.05ms of in-process computation. An LLM call takes 300–2,000ms and costs tokens.

Is it right for your use case?

Good fit:

  • Agent answers the same or similar questions across sessions
  • You have fact-sensitive answers that can go stale (prices, limits, policies)
  • Multiple agents or services share a knowledge base
  • You need audit trails β€” knowing which memory answered and why

Not the right tool:

  • Document RAG over a corpus of files β†’ use a vector database for that
  • Replacing your application's source-of-truth database
  • Agents that never repeat similar queries

Features at a glance

FeatureWhat it does
Decision engineEvery resolve() returns REPLAY / RESTORE / VERIFY / NONE β€” never silent injection
Explainabilitydecision.explain() shows per-component scores: semantic, recency, confidence, usage
Hybrid retrievalBM25 FTS5 + optional vector KNN + RRF fusion β€” fast and accurate
4 backendsSQLite (default, zero-setup) Β· ChromaDB Β· Redis Β· PostgreSQL
Framework adaptersDrop-in BaseMemory for LangChain and LlamaIndex
MCP serverWorks with Cursor, Claude Code, VS Code via Model Context Protocol
REST APIFastAPI server with 9 endpoints + Swagger UI
DashboardStreamlit UI β€” stats, memory browser, live resolve sandbox
Multi-agentSHARED / NAMESPACED / ISOLATED memory across multiple agents
Confidence learningEvent-driven confidence updates + half-life temporal decay
Memory graphRelationship edges, path-finding, clusters, PageRank importance
Async APIaremember, aresolve, alist, … β€” all operations have async counterparts
TTL & statesAutomatic expiry, archiving, near-duplicate consolidation

β†’ Full feature reference: docs/features.md

Performance

All numbers are measured β€” no projections. Charts generated from real benchmark runs.

Latency at scale (diverse unique content, no LRU cache)

resolve() latency vs store size

Store sizep50p95p99Notes
Any size (cache hit)0.007ms0.010msβ€”LRU cache, 60–80% of production queries
500 – 100K9–19ms35–84ms70–136msDiverse unique content, raw SQLite
1M (template-repeated)130ms310ms385msWorst case: 32K copies/template β†’ 32K FTS5 matches

Key insight: latency scales with match count per query, not total store size. A 1M-entry store with diverse unique memories performs near the 10K numbers.

Tuning levers (all measured β€” shipped by default)

Pareto frontier: latency vs implementation effort

Applied by defaultImpact
LRU cache (5s TTL, 256 entries)10ms β†’ 0.007ms for repeated queries
Bloom filter (NONE fast-path)0.46ms β†’ 0.010ms at keyword_search level
Stop-word FTS5 filter12.4ms β†’ 4.3ms β€” stops "how/do/i/my" from matching 80% of corpus
touch() no commit-9ms per REPLAY β€” WAL durable without fsync
PRAGMA cache_size=32MB + mmap-4ms vs default 2MB cache
_RRFBucket at module level-0.35ms/call β€” was recreated inside fuse() each call
Dynamic IDF stop words (β‰₯5K docs)Filters corpus-saturated terms automatically

Points on the Pareto frontier above cannot improve latency without increasing implementation effort. LRU cache and Bloom filter are on the frontier β€” they ship by default.

Seeding throughput

Mode10K100K1M
Standard (per-row commit)~92s~909s~2.5h
Fast-seed (--fast-seed)3s17s25s

β†’ Full methodology, charts, and tuning guide: docs/stress-testing.md

When to use it

Use Agent Memory when:

  • You want an agent to remember past interactions without injecting all of them into every prompt
  • You need explicit control over when memory is used (replay exact answers vs inject as context vs verify first)
  • You have different memory trust levels (user preferences vs potentially-stale facts vs tool outputs)
  • Multiple processes, services, or agents share the same memory store
  • You need audit trails β€” every replay is traceable to a specific stored entry with a score breakdown

Don't use it for:

  • Document RAG (search over a corpus of files) β€” use a vector database for that; Agent Memory stores queryβ†’answer experiences
  • A replacement for your database β€” it stores transient agent knowledge, not your application's source-of-truth data

Quick Start

pip install agent-memory-sdk
from agent_memory import Memory, MemoryAction

memory = Memory(persist_dir=".agent_memory")

# Store once after a good answer
memory.remember(
    "How do I reset my password?",
    "Go to Settings β†’ Security β†’ Reset Password.",
    type="conversation", tags=["auth"],
)

# Decide before every LLM call
decision = memory.resolve("How do I reset my password?")

if decision.action == MemoryAction.REPLAY:
    return decision.response          # exact match β€” no LLM call needed

if decision.action == MemoryAction.RESTORE:
    context = memory.format_restore_context(decision)
    return call_llm(query, system_extra=context)

# VERIFY or NONE β€” validate or answer fresh

β†’ Full integration pattern and API reference: docs/usage.md

Local Setup

pip install agent-memory-sdk

# Store something
agent-memory remember "How do I reset my password?" \
  "Go to Settings β†’ Security β†’ Reset Password." \
  --type conversation --tags auth,faq

# Ask it back
agent-memory resolve "I forgot my password"
# βœ… REPLAY  confidence: 0.87
# matched: "How do I reset my password?"  stored: 2026-01-01  reused 1Γ—
# response: Go to Settings β†’ Security β†’ Reset Password.

# See what's stored
agent-memory stats

Option 2 β€” Redis or Postgres backend

# Spin up the services
docker compose -f docker-compose.dev.yml up -d

# Install the backend extra
pip install "agent-memory-sdk[redis]"      # or [postgres]

# Use it
agent-memory --backend redis remember "API limit" "1000 req/min" --type fact
agent-memory --backend redis resolve "What is the rate limit?"

Option 3 β€” Streamlit dashboard (visual exploration)

pip install "agent-memory-sdk[dashboard]"

# Seed demo data (optional)
python scripts/seed_demo.py --data-dir .agent_memory

# Open the dashboard
AGENT_MEMORY_DIR=.agent_memory agent-memory-dashboard
# β†’ http://localhost:8501

Option 4 β€” Development / from source

git clone https://github.com/TheProdSDE/agent-memory-sdk.git
cd agent-memory-sdk
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
make test          # run all tests
make check         # lint + type check

Dashboard

An interactive Streamlit dashboard for exploring memories, testing the resolve sandbox, and monitoring stats.

Agent Memory dashboard slideshow: stats, memory table, replay/verify/none resolve results

Stats β€” KPIs + chartsMemories β€” searchable table
Stats tab: 31 total, donut chart by state, bar chart by typeMemories tab: 29 rows with type, scope, confidence, access count
Resolve β†’ REPLAYResolve β†’ VERIFY
REPLAY badge, confidence 0.88, full response shownVERIFY badge, context entry with fact response
pip install "agent-memory-sdk[dashboard]"
AGENT_MEMORY_DIR=.agent_memory agent-memory-dashboard   # β†’ http://localhost:8501

# Seed demo data (optional β€” run only when you want it)
python scripts/seed_demo.py --data-dir .agent_memory

Integrations

agent-memory-sdk is the core β€” every integration delegates to Memory.

IntegrationInstall extraExample
Core SDK (SQLite)(none)basic_usage.py
LangChain BaseMemory[langchain]langchain_integration.py
LlamaIndex BaseMemory[llamaindex]llamaindex_integration.py
Redis backend[redis]redis_backend.py
PostgreSQL backend[postgres]postgres_backend.py
Multi-agent isolation(none)multi_agent.py
FastAPI REST server[api]rest_api.py
Confidence + Graph(none)confidence_and_graph.py
Benchmark harness(none)benchmark_harness.py

β†’ Setup instructions and code snippets for each: examples/README.md

Tech Stack

ComponentTechnology
LanguagePython 3.10+
StorageSQLite Β· ChromaDB Β· Redis Β· PostgreSQL
RetrievalBM25 FTS5 + Vector KNN + RRF fusion
InterfacesMCP Β· FastAPI Β· Streamlit Β· CLI
AdaptersLangChain BaseMemory Β· LlamaIndex BaseMemory
Search DSABloom filter (NONE fast-path) Β· Dynamic IDF stop words Β· RRF fusion
Testingpytest (270 tests) Β· ruff Β· mypy
CI/CDGitHub Actions β€” test matrix 3.10–3.13 β†’ release gate β†’ PyPI

No API keys required β€” everything runs locally.

Documentation

DocContents
docs/usage.mdIntegration pattern, API reference, MemoryEntry / MemoryDecision fields
docs/features.mdDecision actions, hybrid retrieval, types, scopes, TTL, graph, multi-agent
docs/mcp.mdMCP server setup for Cursor, Claude Code, VS Code; Docker config
docs/cli.mdCLI commands, REST API server, dashboard launch, eval dataset format
docs/roadmap.mdAll shipped features, what's next, GitHub Project board
docs/release.mdCI-automated release process, versioning, rollback
docs/architecture.mdRetrieval pipeline, scoring policy, system design
docs/comparison.mdFeature matrix vs Redis, mem0, Zep, LangMem, LlamaIndex, MemGPT
docs/stress-testing.md10K / 100K / 1M latency benchmarks with methodology
docs/benchmarks.mdEval results and reproduce commands
docs/why-decision-layer.mdThe failure mode this project exists to fix
examples/README.mdIndex of all runnable examples
CONTRIBUTING.mdDev setup, test commands, PR checklist

Status & Roadmap

All planned features through v0.5.0 are shipped. Track what's next on the GitHub Project β†’

β†’ docs/roadmap.md

Release

Tag-triggered, fully CI-gated: git tag v0.x.y && git push origin v0.x.y

β†’ docs/release.md

Contributing

See CONTRIBUTING.md for dev setup, test commands, and the PR checklist.

License

MIT β€” see LICENSE.

Support

Agent Memory helps agents decide: Replay β†’ Restore β†’ Verify β†’ Ignore

Built with ❀️ by TheProdSDE

mcp-name: io.github.theprodsde/agent-memory

Keywords

agent-memory

FAQs

Related posts