mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-11 13:32:34 +00:00
24 lines
509 B
Plaintext
24 lines
509 B
Plaintext
---
|
|
title: "Memory: Reference"
|
|
description: "Reference for remember/recall contracts, scopes, and retrieval tuning."
|
|
icon: "book"
|
|
mode: "wide"
|
|
---
|
|
|
|
## API surface
|
|
|
|
- `remember(content, scope=...)`
|
|
- `recall(query, limit=...)`
|
|
- `extract_memories(text)`
|
|
- `scope(path)` and `subscope(name)`
|
|
|
|
## Scope rules
|
|
|
|
- use `/{entity_type}/{identifier}` paths
|
|
- keep hierarchy shallow
|
|
- isolate sessions by stable identifiers
|
|
|
|
## Canonical source
|
|
|
|
Primary API details live in [/en/concepts/memory](/en/concepts/memory).
|