state_get
Retrieve a stored value by its key. Returns found status and value if key exists and has not expired, otherwise returns not found.
Instructions
Get the value stored under key.
Returns found=True and the value if the key exists and has not expired. Returns found=False and value=None if the key is missing or expired.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| found | Yes | ||
| value | No |