(ctx context.Context, e Entry)
| 39 | // have I/O to flush, and the agent loop doesn't need to know. |
| 40 | type Store interface { |
| 41 | Save(ctx context.Context, e Entry) error |
| 42 | Recall(ctx context.Context, query string, limit int) ([]Entry, error) |
| 43 | Preamble(ctx context.Context) (string, error) |
| 44 | } |