AIAny
AI Infra2025
Icon for item

Memori

An open-source memory layer that turns agent runs and conversations into structured, persistent state recallable across sessions. Captures facts, events, preferences, and relationships automatically; LLM-agnostic with SDK and MCP integration.

Introduction

Most agents start every session amnesiac: you either re-paste history into the context window (expensive, lossy) or bolt on a vector store and hope retrieval surfaces the right thing. Memori reframes memory as structured state rather than a pile of retrievable chunks — it parses conversations and tool calls into typed facts, events, preferences, relationships, and skills, so recall is targeted instead of a fuzzy similarity search.

The number that makes the case: on the LoCoMo benchmark it reports 81.95% accuracy at an average of 1,294 tokens per query. That second figure is the real point — instead of stuffing the whole transcript back in, it injects only the slice that matters, which is what keeps long-running agents both accurate and cheap.

What Sets It Apart
  • Memory is typed, not just embedded — attributes, events, facts, relationships, preferences, and skills are tracked distinctly, so you can reason over what kind of thing was remembered, not just nearest-neighbor text.
  • Genuinely LLM-agnostic: works across OpenAI, Anthropic, Bedrock, Gemini, DeepSeek, and Grok, so memory isn't coupled to one provider.
  • Two ways in — direct SDK (Python and TypeScript) for app builders, or MCP for drop-in persistence in Claude Code, Cursor, and similar clients without writing integration code.
Who It's For

A strong fit if you're shipping production agents that must remember users or accumulate knowledge across sessions, and you care about token cost at scale. Look elsewhere if you need a single-shot chatbot with no continuity, or if your memory needs are simple enough that a basic vector store and a system prompt already cover them — Memori's structured-state model is overhead you won't recoup at that size.

Information

  • Websitegithub.com
  • OrganizationsMemoriLabs
  • AuthorsMemori Labs
  • Published date2025/07/24

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.