Skip to main content

HotMem banner

HotMem

CI PyPI Python codecov License: MIT Ruff

A local-first memory sidecar for agent applications. One SQLite DB. One port: 8711.

HotMem provides fast, queryable working memory with hybrid vector + keyword search. Store facts, retrieve them ranked, and get back LLM-ready message objects you can stitch directly into prompts.

Supports Python 3.11, 3.12, 3.13, and 3.14.

Install

pip install hotmem
# or
uv pip install hotmem

Quick Start

# Start with a mount directory (portable memory)
hotmem serve --mount ./hotmem

# Or just start (uses temp DB)
hotmem serve

CLI

hotmem serve --port 8711 --mount ./data/hotmem
hotmem serve --db ./my.sqlite
hotmem hydrate --file swap.jsonl --db ./my.sqlite
hotmem hydrate --file swap.jsonl.gz --db ./my.sqlite
hotmem snapshot --file swap.jsonl --db ./my.sqlite
hotmem status

API

All endpoints under /v1. Default: http://127.0.0.1:8711

GET /v1/health

{"status": "ok", "memory_count": 42, "db_path": "...", "uptime_s": 120.5}

POST /v1/add

{"identifier": "vendor_x", "fact": "Invoice total was $5000", "importance": 0.8}

POST /v1/search

{"query": "duplicate invoice risk", "top_k": 5, "max_chars": 1500}

Returns ranked message objects ready for LLM stitching:

{
  "memories": [
    {"role": "system", "content": "...", "memory_id": "...", "identifier": "...", "score": 0.87}
  ],
  "count": 5,
  "trace_ms": 2.1
}

POST /v1/hydrate

{"file": "swap.jsonl"}

POST /v1/snapshot

{"file": "swap.jsonl"}

Python Client

from hotmem.client import HotMemClient

with HotMemClient("http://127.0.0.1:8711") as client:
    client.add("vendor_x", "Invoice total $5000", importance=0.8)

    memories = client.search("duplicate invoice risk", top_k=5, max_chars=1500)

    # memories are LLM-ready message objects
    messages = memories + [{"role": "user", "content": "Analyze this vendor."}]

Mounting

Any directory can be a HotMem mount. The mount contains:

  • hotmem.sqlite - the database
  • swap.jsonl - portable JSONL backup
  • manifest.json - mount metadata

Plain .jsonl is the canonical portable swap format. HotMem can also hydrate from and snapshot to .jsonl.gz for compressed archives.

hotmem serve --mount /mnt/usb/hotmem     # portable memory on USB
hotmem serve --mount ./data/hotmem        # local project memory

Development

uv sync                          # install deps
uv run pytest                    # run tests
uv run ruff check src/ tests/    # lint
uv run ruff format src/ tests/   # format
uv build                         # build wheel

Architecture

Each source module is self-contained with a docstring header describing its purpose and interface:

Module Purpose
trace.py Structured JSON logging
embed.py Hash-based embedder (dim=64)
db.py SQLite storage + cosine similarity UDF
search.py Hybrid ranking (cosine + keyword + importance)
swap.py JSONL hydrate/snapshot
mount.py Portable directory management
server.py FastAPI endpoints
cli.py Click CLI
client.py Python SDK (httpx)

Every operation emits structured JSON traces to stderr with component tags:

hotmem serve --mount ./data 2>&1 | grep '"component": "search"'

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT - see LICENSE.

Download files

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

Source Distribution

hotmem-0.1.7.tar.gz (23.8 kB view details)

Uploaded Source

Built Distribution

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

hotmem-0.1.7-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file hotmem-0.1.7.tar.gz.

File metadata

  • Download URL: hotmem-0.1.7.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hotmem-0.1.7.tar.gz
Algorithm Hash digest
SHA256 fdbdf4d4791eb9e1bfd07f849b991608b86267b022360c1fa404766c29bdbd2c
MD5 7e4eec9b2a288bdd90016a24565ecc4a
BLAKE2b-256 9124e05302f5ef0bce9b9b6b26d975469e5ef62d83d2c93c053efde42ec6d19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hotmem-0.1.7.tar.gz:

Publisher: release.yml on KnowGuard-AI/HotMem

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hotmem-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: hotmem-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hotmem-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 b7f4c042301cba9f83dc076c371e1deac5277824d99901e067fe0d6eede7769f
MD5 161d59b265bc38a1440787acb8857aa7
BLAKE2b-256 c5e513b2e7bfb1bad3cc8959ae51403b114563f1d8b1dfd2d4f6198b883cb8c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hotmem-0.1.7-py3-none-any.whl:

Publisher: release.yml on KnowGuard-AI/HotMem

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.2.4

2 files

0.2.3

2 files

0.2.1

2 files

0.2.0

2 files

0.1.9

2 files

0.1.8

2 files

This release

0.1.7 This release

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page