Skip to main content
GET
/
v1
/
agents
/
{id}
/
hot-memories
Get hot-tier memories
curl --request GET \
  --url http://localhost:8080/v1/agents/{id}/hot-memories \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "content": "<string>",
    "confidence": 0.5,
    "reinforcement_count": 123,
    "access_count": 123,
    "decay_rate": 123,
    "metadata": {},
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

API key with mk_ or rk_ prefix

Path Parameters

id
string<uuid>
required

Query Parameters

limit
integer

Response

200 - application/json

Hot memories

id
string<uuid>
agent_id
string<uuid>
tenant_id
string<uuid>
type
enum<string>
Available options:
preference,
fact,
decision,
constraint
content
string
source
enum<string>
Available options:
explicit_statement,
implicit_inference,
behavioral_signal
confidence
number<float>
Required range: 0 <= x <= 1
tier
enum<string>
Available options:
hot,
warm,
cold,
archive
reinforcement_count
integer
access_count
integer
decay_rate
number<float>
metadata
object
created_at
string<date-time>
updated_at
string<date-time>