AIAny
AI Agent2025
Icon for item

memvid

Packages an AI agent's memory — data, embeddings, search indexes, and metadata — into one portable .mv2 file, replacing multi-service RAG stacks. Combines BM25 and HNSW search with temporal queries and sub-millisecond local reads, fully offline.

Introduction

Most RAG setups are quietly a small distributed system: a vector database, a full-text index, an embedding service, and a metadata store, each with its own deploy step and failure mode. The bet here is that an agent's entire long-term memory can instead live in one immutable file you copy and version like a SQLite database — content, embeddings, search structures, and metadata bundled into append-only "Smart Frames" with no sidecar .wal, .lock, or .shm files and no server to run.

What Sets It Apart
  • Single-file and serverless: a .mv2 artifact is something you can ship, diff, and version-control, so memory stops being infrastructure you operate and becomes a file you move around.
  • Hybrid retrieval in one container: BM25 full-text, HNSW vector similarity, and temporal/multi-hop reasoning sit in the same file, alongside ingestion for PDFs, CLIP image embeddings, and Whisper audio — one format instead of a glued-together stack.
  • Append-only Smart Frames are immutable and checksummed, which buys two things at once: timeline queries that show how knowledge evolved, and crash safety because committed frames can't be half-written.
  • Designed for local-first speed and offline use — it reports sub-millisecond local reads and benchmark gains on LoCoMo long-horizon recall, and stays model-agnostic.
Great Fit / Look Elsewhere

Great fit if you want agent memory you can ship as a file: local-first or offline apps, reproducible evaluation, or replacing a multi-service RAG stack you'd rather not run. Look elsewhere if you need concurrent multi-writer access at database scale, or your data already lives in a managed vector store you're happy with — a single-file format trades horizontal scale and write concurrency for portability. The headline latency and accuracy figures are self-reported, so validate them on your own corpus before committing.

Information

  • Websitegithub.com
  • AuthorsMemvid
  • Published date2025/05/27

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).