Files
openworker/coworker/memory/__init__.py
T
Devika Verma ef59b0f39a Memory V1: remembered facts, your instructions, one screen
Coworkers remember durable things you tell them and use them in future sessions.
One Settings screen lists everything remembered - edit, delete, or stop new saves; standing instructions ride along.
Knowledge is session-stable, the save switch is per-message; sqlite gains a summary column via in-place migration.
2026-07-28 20:32:14 +05:30

27 lines
569 B
Python

from .base import (
INDEX_THRESHOLD_CHARS,
MemoryItem,
MemoryStore,
Scope,
format_memories,
format_memory_index,
render_memory_block,
)
from .settings import MemorySettingsStore, format_user_rules
from .sqlite_store import SQLiteMemoryStore
from .tools import memory_tools
__all__ = [
"INDEX_THRESHOLD_CHARS",
"MemoryItem",
"MemoryStore",
"MemorySettingsStore",
"Scope",
"format_memories",
"format_memory_index",
"format_user_rules",
"render_memory_block",
"SQLiteMemoryStore",
"memory_tools",
]