Skip to main content
GET
/
v1
/
agents
/
{id}
/
mind
Get agent mind
curl --request GET \
  --url http://localhost:8080/v1/agents/{id}/mind \
  --header 'Authorization: Bearer <token>'
{
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "memories": [
    {
      "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"
    }
  ],
  "episodes": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "raw_content": "<string>",
      "conversation_id": "<string>",
      "confidence": 123,
      "occurred_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "procedures": [
    {}
  ],
  "schemas": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

API key with mk_ or rk_ prefix

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Agent mind snapshot

agent_id
string<uuid>
memories
object[]
episodes
object[]
procedures
object[]
schemas
object[]