Skip to main content

Human-like memory for AI applications

Project description

recollect

Cognitive memory system for AI applications. Activation-based retrieval with time decay, spreading activation, and token-budgeted recall.

Install

pip install recollect                 # Includes Anthropic provider
pip install recollect[openai]         # Adds OpenAI/OpenAI-compatible provider support

Quick Start

import asyncio
from recollect import CognitiveMemory

async def main():
    memory = CognitiveMemory()
    await memory.connect()

    await memory.experience(
        "The team decided to migrate from Redis to PostgreSQL for persistence."
    )

    thoughts = await memory.think_about("database decisions", token_budget=500)
    for thought in thoughts:
        print(f"[{thought.activation:.2f}] {thought.content}")

    await memory.close()

asyncio.run(main())

API

Method Description
connect(db_url=None) Connect to PostgreSQL. Uses DATABASE_URL env var if no argument.
experience(content) Store a memory trace. LLM extracts entities, concepts, significance.
think_about(query, token_budget) Retrieve memories that fit within a token limit. Returns list[Thought].
consolidate(threshold=None) Merge and prune weak traces.
forget(trace_id) Remove a trace.
reinforce(trace_id, factor=1.1) Strengthen a trace.
facts(subject=None) List persona facts.
start_session(user_id) Begin a scoped session.
close() Disconnect and release resources.

Environment Variables

Variable Required Default Description
DATABASE_URL Yes postgresql://localhost:5432/memory_sdk PostgreSQL connection string.
ANTHROPIC_API_KEY For Anthropic provider -- Anthropic API key. SDK resolves automatically.
OPENAI_API_KEY For OpenAI provider -- OpenAI API key. Required by OpenAIProvider.
ANTHROPIC_MODEL No claude-haiku-4-5-20251001 Override default Anthropic extraction model.
OPENAI_MODEL No gpt-5-mini Override default OpenAI extraction model.
OLLAMA_MODEL No qwen3.5 Override default Ollama extraction model.
ANTHROPIC_BASE_URL No api.anthropic.com Override Anthropic API endpoint.
OPENAI_BASE_URL No api.openai.com Override OpenAI API endpoint.
OLLAMA_BASE_URL No http://localhost:11434/v1 Ollama API endpoint.
MEMORY_CONFIG No -- Path to custom TOML config file.
MEMORY_EXTRACTION_INSTRUCTIONS No -- Override extraction prompt instructions.

Configuration

Defaults ship in config.toml. Override by placing a memory.toml in your working directory, or set MEMORY_CONFIG to a custom path. Only include keys you want to change:

[memory]
decay_rate = 0.05

[retrieval]
max_retrievals = 10

[extraction]
max_tokens = 2048

Config sections

Section Controls Key parameters
[database] PostgreSQL connection url
[memory] Core memory model initial_strength, consolidation_threshold, decay_rate
[working_memory] Working memory capacity capacity (default 7, range 5-9)
[retrieval] Retrieval pipeline tuning max_retrievals, search_limit, selection_threshold
[extraction] LLM extraction max_tokens, max_concepts, max_relations
[embedding] Local embedding model model, dimensions
[persona] Persona fact management auto_extract, confidence_threshold
[session] Session summaries summary_strength, summary_max_tokens

Full defaults: config.toml

Or pass a path directly:

from recollect.config import MemoryConfig

config = MemoryConfig(config_path=Path("./my-config.toml"))
memory = CognitiveMemory(config=config)

LLM Providers

Three providers behind the LLMProvider protocol. All share the same constructor signature: (model, api_key, base_url, defaults).

Anthropic (default)

from recollect.llm.anthropic import AnthropicProvider
from recollect.extraction import PatternExtractor

provider = AnthropicProvider()  # uses ANTHROPIC_API_KEY
extractor = PatternExtractor(provider)
memory = CognitiveMemory(extractor=extractor)

OpenAI

Requires pip install recollect[openai].

from recollect.llm.openai import OpenAIProvider

provider = OpenAIProvider()  # uses OPENAI_API_KEY

Ollama / LM Studio (OpenAI-compatible)

from recollect.llm.openai_compat import OpenAICompatProvider

# Ollama
provider = OpenAICompatProvider(
    model="qwen3.5",
    base_url="http://localhost:11434/v1",
)

# LM Studio
provider = OpenAICompatProvider(
    model="your-model",
    base_url="http://localhost:1234/v1",
)

Reasoning models

Models that use internal chain-of-thought (OpenAI o1/o3, Qwen3, DeepSeek-R1) consume thinking tokens from the max_tokens budget. If extraction returns empty responses, increase the token budget:

# memory.toml
[extraction]
max_tokens = 8192

The default is 4096, which provides sufficient headroom for most models.

Requirements

  • Python 3.12+
  • PostgreSQL 17 with pgvector
  • DATABASE_URL environment variable

License

MIT

Project details


Download files

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

Source Distribution

recollect-0.3.2.tar.gz (46.5 kB view details)

Uploaded Source

Built Distribution

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

recollect-0.3.2-py3-none-any.whl (63.9 kB view details)

Uploaded Python 3

File details

Details for the file recollect-0.3.2.tar.gz.

File metadata

  • Download URL: recollect-0.3.2.tar.gz
  • Upload date:
  • Size: 46.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for recollect-0.3.2.tar.gz
Algorithm Hash digest
SHA256 102f6a090c61f89b314d30167eaf50a42ba1a87be43afefa2582b5d2349e9586
MD5 8d051f2964e9418cbdcbfa9bf51a791e
BLAKE2b-256 34cd49c7fa9cd62e13463fe2574883b9173bd6180f1bff81d9b82b3694d00bd3

See more details on using hashes here.

File details

Details for the file recollect-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: recollect-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 63.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for recollect-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0f77731fa98d76c42e6e510b34ea6d45dcd590f23e58db286249caf1e2d2e2ff
MD5 cbc2fc61dd06689a5e171f414f36dfd8
BLAKE2b-256 aee9e4832f79edcd33b78aa8b75fbdb752976cd7dbf1feb48f3c367fe29c3b00

See more details on using hashes here.

Supported by

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