Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

ovos-memory-plugins

License: Apache 2.0 PyPI Build Python 3.10+

Give your OpenVoiceOS persona a memory.

By default, a chat persona is amnesiac. Every turn starts from scratch. A memory plugin fixes that. It remembers what was said and feeds the relevant parts back into the next prompt, so the assistant can follow up, recall facts, and stay on topic. This package is a bundle of local-first memory backends plus an orchestrator that combines them.

"Local-first" means every backend runs on your machine. Some are pure standard library, with zero extra dependencies. The heavier ones use local models or a local LLM endpoint. None of them send data to a cloud service.

Backend (memory_module) What it remembers with Extra setup
ovos-memory-plugin-recency the last few turns (sliding window) none
ovos-memory-plugin-lexical keyword search over past turns (SQLite FTS5 + BM25) none
ovos-memory-plugin-local-rag semantic search over past turns (embeddings + vector DB) local model stack
ovos-memory-plugin-longterm a rolling summary of the whole conversation a local chat endpoint
ovos-memory-plugin-entity durable facts about the user (name, preferences…) a local chat endpoint
ovos-memory-plugin-composite several of the above at once, results merged the members' setup

New here? Jump to Quick start. Building something? See How it works and Write your own backend.


Install

pip install ovos-memory-plugins

# add the local semantic-RAG stack (embeddings model + vector store):
pip install 'ovos-memory-plugins[local-rag]'

recency and lexical need nothing beyond the base install. They are pure Python standard library.


Quick start

A persona is a small JSON file. The memory_module key picks a memory backend. A block with the same name configures it. Drop the file in your ovos-persona personas directory.

Step 1: remember the last few turns (no setup)

The simplest memory: a sliding window of recent turns. No models, no endpoints.

{
  "name": "MyAssistant",
  "memory_module": "ovos-memory-plugin-recency",
  "ovos-memory-plugin-recency": {
    "max_history": 10,
    "system_prompt": "You are a helpful assistant."
  }
}

The assistant can now handle "and what about tomorrow?" because the previous turns are still in context. That is all most short conversations need.

Step 2: recall things said long ago (semantic)

A window forgets. To recall something from much earlier, search past turns by meaning:

{
  "name": "MyAssistant",
  "memory_module": "ovos-memory-plugin-local-rag",
  "ovos-memory-plugin-local-rag": {
    "retrieval": {"max_num_results": 4},
    "system_prompt": "You are a helpful assistant."
  }
}

Every exchange is embedded and stored in a local vector database. Before each reply, the most relevant past exchanges are retrieved and added to the prompt. Ask "what was that book I mentioned last week?" and it can answer. Needs the [local-rag] extra.

Step 3: combine memories

Real assistants want more than one kind of memory. The composite backend loads several members and merges their results, so one memory_module gives you hybrid recall (meaning and keywords) plus durable user facts:

{
  "name": "MyAssistant",
  "memory_module": "ovos-memory-plugin-composite",
  "ovos-memory-plugin-composite": {
    "members": [
      {"module": "ovos-memory-plugin-local-rag", "config": {"collection": "kb"}},
      {"module": "ovos-memory-plugin-lexical",   "config": {"db_path": "~/.local/share/ovos/lex.db"}},
      {"module": "ovos-memory-plugin-entity",    "config": {"api_url": "http://localhost:8000/v1"}}
    ],
    "fusion": "rrf",
    "system_prompt": "You are a helpful assistant."
  }
}

local-rag catches paraphrases, lexical catches exact terms (names, codes, rare words), and entity remembers who the user is. Their hits are merged with Reciprocal Rank Fusion. See composite.

Prefer to see it run before wiring a persona? The examples/ folder has ready persona files and offline demo scripts:

python examples/demo_composite.py     # hybrid recall, fully offline

How it works

A memory backend is an AgentContextManager. The persona owns the chat model and tools. The memory owns conversation state and prompt assembly. It never generates the answer itself, it only shapes the messages the model sees. Three methods make up the whole contract:

get_history(session_id) -> list[AgentMessage]
update_history(new_messages, session_id) -> None
build_conversation_context(utterance, session_id) -> list[AgentMessage]

The persona calls build_conversation_context before each turn (to assemble the prompt) and update_history after each turn (to record what happened). Two rules hold for the returned message list:

  • the first message MAY be a system message (the persona prompt)
  • the last message is ALWAYS the current user utterance

Everything else goes in between: summaries, retrieved snippets, known facts, and recent turns. The overview explains the shared knobs: the five inject_mode strategies (how recalled context is placed in the prompt) and the retrieval settings (max_num_results, min_score, query_mode).


Choosing a backend

Want… Use
just the last few turns recency
exact-term recall (names, IDs, codes) lexical
meaning-based recall of past detail local-rag
combined recall (meaning + keywords) composite of local-rag + lexical
to remember who the user is across sessions entity
a compact gist of very long chats longterm
more than one of the above composite

The overview has a full comparison table (persistence, dependencies, offline behaviour, cost per turn).


The composite

composite is a pure orchestrator: it loads member backends by name and consolidates them.

  • Retriever members (local-rag, lexical, or any backend exposing search()) have their hits fused into one ranked, deduplicated list. Reciprocal Rank Fusion is the default. It ranks by position, not raw score, so it combines backends whose scores live on different scales (cosine vs BM25) without one drowning out the other. Other modes: weighted, merge, priority, interleave.
  • Context members (longterm, entity, recency) contribute their system block (a summary, known facts, and so on).
  • New turns are recorded in every member. Recent history comes from a chosen primary member.

If a member fails to load or errors at runtime, it is skipped and the rest carry on. Full details and the config schema: composite.


Write your own backend

Two paths, depending on what you are building:

  • A retrieval backend (stores documents, recalls them by some search): subclass BaseRetrievalMemory and implement just two hooks, _store_document and _query_backend (returning MemoryHits). You inherit history handling, the five inject modes, the context renderer, and a search() that plugs straight into the composite.
  • Any other memory: subclass AgentContextManager and implement the three contract methods directly.

Register the class under the opm.agents.memory entry-point group and it becomes selectable as a memory_module. Step-by-step guide with code: write a backend.


Architecture

ovos-persona
  └─ memory_module: "ovos-memory-plugin-composite"
       └─ CompositeMemory
            ├─ ovos-memory-plugin-local-rag   (retriever, semantic)
            ├─ ovos-memory-plugin-lexical     (retriever, keyword)
            └─ ovos-memory-plugin-entity      (context, user facts)

AgentContextManager  (the contract every backend implements)
  ├─ get_history(session_id)
  ├─ update_history(messages, session_id)
  └─ build_conversation_context(utterance, session_id) -> list[AgentMessage]

Retrieval backends and the composite share a BaseRetrievalMemory that provides history, the inject-mode strategies, and the context renderer. A concrete retriever only implements store and query. The fusion helpers and the MemoryHit type live in ovos_memory_plugins.common.


Running tests

pip install -e ".[test]"

pytest tests -v                       # everything (unit + end-to-end), no external services
pytest tests/test_composite.py -v     # just the composite (fast)

The end-to-end RAG test exercises the real embeddings + vector-store stack. Its first run downloads the embeddings model into the shared cache, then is fast.


License

Apache License 2.0. See LICENSE.

Credits

Developed by TigreGótico for OpenVoiceOS.

NGI0 Commons Fund

This project was funded through the NGI0 Commons Fund, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme, under the aegis of DG Communications Networks, Content and Technology under grant agreement No 101135429.

Download files

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

Source Distribution

ovos_memory_plugins-1.1.1a2.tar.gz (53.1 kB view details)

Uploaded Source

Built Distribution

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

ovos_memory_plugins-1.1.1a2-py3-none-any.whl (41.1 kB view details)

Uploaded Python 3

File details

Details for the file ovos_memory_plugins-1.1.1a2.tar.gz.

File metadata

  • Download URL: ovos_memory_plugins-1.1.1a2.tar.gz
  • Upload date:
  • Size: 53.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ovos_memory_plugins-1.1.1a2.tar.gz
Algorithm Hash digest
SHA256 26cd53808f945c15f34a15ac44e6718e9225420af4d3c2254b11aeb42abed2cd
MD5 f4c005c6c76c656490ab3e39b528c104
BLAKE2b-256 a3e15e57e194b2490755dbde13867283c906695038584546af7d0d708b5fa215

See more details on using hashes here.

File details

Details for the file ovos_memory_plugins-1.1.1a2-py3-none-any.whl.

File metadata

File hashes

Hashes for ovos_memory_plugins-1.1.1a2-py3-none-any.whl
Algorithm Hash digest
SHA256 880013dcaa3ea828ab0f75a059c1ec75422215323f18075f42e8f5b54a35edfc
MD5 f25fcd4913657b6c92dcb48a5291b002
BLAKE2b-256 8b4d63e13602c7c9d7d6f836e58654e4da1ee46b9c61dac62463577aad11994d

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.1a2 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page