SmartMemory
POST
/memory/{item_id}/supersede

Create a bitemporal replacement for an accessible memory item.

Path Parameters

item_id*Item Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Append a replacement while retaining the prior item's history.

Response Body

application/json

application/json

curl -X POST "https://example.com/memory/string/supersede" \  -H "Content-Type: application/json" \  -d '{    "content": "string",    "memory_type": "string",    "reason": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}