memory_get
Retrieve the full content of a knowledge card by its ID. Use after search returns a truncated summary; supports chunked reading for long cards.
Instructions
读取某张知识卡的完整内容。先用 memory_search 拿到 id,再调用本工具展开全文。检索结果里的摘要被截断时使用。长卡会按长度上限分片返回:结果末尾会写明还有多少字符未显示,并按需给出继续读用的 offset —— 看到「还有 N 字符未显示」时,若那部分对你有用,就用返回的 offset 再调一次。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 卡片 id,来自 memory_search 结果 | |
| full | No | true 则不分片,直接返回完整正文(长卡会占用大量上下文) | |
| offset | No | 从第几个字符开始读,默认 0。分片续读时用上一次返回的 offset | |
| max_chars | No | 本次最多返回多少字符,默认 20000;0 表示不限长(等于取全文,长卡慎用) |