Introduces OpenClaw's Memory system, including memory storage, retrieval, and configuring different memory backends.
The Memory system allows Agents to remember information across Sessions, enabling true long-term memory.
agents:
my-agent:
memory:
enabled: true
backend: sqlite # or postgres, redis
maxTokens: 4000
Agents automatically retrieve relevant memories based on semantic similarity.
It allows Agents to remember information across Sessions, enabling true long-term memory.
It supports Working Memory (short-term), Long-term Memory (persistent), and Semantic Memory (structured knowledge).
Set the `backend` field to sqlite, postgres, or redis in the YAML configuration.
The Agent automatically retrieves relevant memories based on semantic similarity.
人类专家验证
官方机器人验证