Graph At Time
graph_at_timeSee the memory as it stood on a given day, optionally faded by age. PREMIUM (license).
Relations carrying since and until are filtered to those in force on the date; with a half-life, confidence decays exponentially with age so a two-year-old belief does not weigh the same as last week's. Typical input {"graph": {...}, "as_of": "2026-06-01", "half_life_days": 180} returns {"as_of": "2026-06-01", "graph": {...}, "dropped": {"not_yet": 1, "expired": 2}, "decayed": 4}.
Use when the answer depends on when you ask. Not for what changed between two points - that is graph_diff, which does not need dates at all. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "as_of must be a date like 2026-06-01"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | Yes | The date to view the memory as of, ISO 8601, e.g. "2026-06-01". | |
| graph | Yes | The graph document. | |
| half_life_days | No | Days over which a relation's confidence halves. 0, the default, disables decay and leaves confidence untouched. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||