Skip to content
Chris Smashe edited this page Jun 17, 2026 · 2 revisions

Long-term Memory

Long-term memory is an optional feature that lets TypeWhisper remember durable facts from your dictation so future prompt actions can recall them as context.

How it works

When an IMemoryStoragePlugin (for example FileMemory or OpenAiVectorMemory) is enabled alongside a configured LLM provider, eligible transcriptions are sent to the LLM to extract durable facts. Those facts are stored by the memory storage plugin, and future Prompts & AI actions can recall them as context.

Memory storage plugin Storage
FileMemory Local JSON.
OpenAiVectorMemory Embedding-backed recall.

See Other plugins for the memory storage plugins.

Enabling memory

The Advanced settings page has a memory enable toggle. The toggle is gated on having both a memory storage plugin and an available LLM provider — without both, the toggle is unavailable.

Related pages


Changelog

Date Change
2026-06-17 Initial version.

Clone this wiki locally