엔그램 목록 엔그램

deep_recall

멀티홉 회수. 기억 사이의 연결을 따라가 단일 검색이 놓칠 맥락을 끌어옵니다. 기억이 서로를 참조할 때(사람 → 프로젝트 → 세부) 가장 좋습니다. 최대 ~12개.

out = mem.engram("deep_recall", "what should I know about Alice?", user_id="alice")
const out = await mem.engram("deep_recall", "what should I know about Alice?", "alice");
let out = mem.engram("deep_recall", "what should I know about Alice?", "alice").await?;
curl -X POST https://api.wontopos.com/api/v1/engram/run \
  -H "X-API-Key: wos-live-..." -H "Content-Type: application/json" \
  -d '{"name":"deep_recall","user_id":"alice","query":"what should I know about Alice?"}'
응답
{ "engram": "deep_recall", "hops": 2, "count": 12,
  "memories": [ ... ],
  "usage": { "input_tokens": 200, "output_tokens": 589 } }
토큰 과금 - 호출마다 usage(입력+출력)가 나오며 API 나머지와 같은 토크나이저로 셉니다. 숨은 수수료 없음. 여러 개를 한 번에? 동시에 호출하면 됩니다 - 각 엔그램은 독립 요청.