1# Copyright (c) 2025-present Aquin Labs Private Limited. All Rights Reserved.
2# This file is part of the Aquin Engine. Unauthorized copying, modification,
3# distribution, or use of this file, via any medium, is strictly prohibited.
4# Proprietary and confidential. See LICENSE for terms.
5
6from __future__ import annotations
7
8import time
9from typing import Any
10
11from .registry import register
12
13
14@register("write_session_memory", {
15"type": "function",
16"function": {
17"name": "write_session_memory",
18"description": "Persist a key/value pair to the session memory. Use to remember facts across turns (e.g. which features were interesting, user preferences, last findings).",