v1

latestOpenAPI 3.0.1Apache 2.02026-07-174811204.8 KB
memories

Add memories

post/v1/memories/

Request body

messagesobject[]

An array of message objects representing the content of the memory. Each message object typically contains 'role' and 'content' fields, where 'role' indicates the sender either 'user' or 'assistant' and 'content' contains the actual message text. This structure allows for the representation of conversations or multi-part memories.

agent_idstring nullable

The unique identifier of the agent associated with this memory.

user_idstring nullable

The unique identifier of the user associated with this memory.

app_idstring nullable

The unique identifier of the application associated with this memory.

run_idstring nullable

The unique identifier of the run associated with this memory.

metadataobject nullable

Additional metadata associated with the memory, which can be used to store any additional information or context about the memory. Best practice for incorporating additional information is through metadata (e.g. location, time, ids, etc.). During retrieval, you can either use these metadata alongside the query to fetch relevant memories or retrieve memories based on the query first and then refine the results using metadata during post-processing.

includesstring nullable

String to include the specific preferences in the memory.

excludesstring nullable

String to exclude the specific preferences in the memory.

inferboolean

Wether to infer the memories or directly store the messages.

output_formatstring nullable

It two output formats: v1.0 (default) and v1.1. We recommend using v1.1 as v1.0 will be deprecated soon.

custom_categoriesobject nullable

A list of categories with category name and it's description.

custom_instructionsstring nullable

Defines project-specific guidelines for handling and organizing memories. When set at the project level, they apply to all new memories in that project.

immutableboolean

Whether the memory is immutable.

async_modeboolean

Whether to add the memory completely asynchronously.

timestampinteger nullable

The timestamp of the memory. Format: Unix timestamp

expiration_datestring nullable

The date and time when the memory will expire. Format: YYYY-MM-DD

org_idstring nullable

The unique identifier of the organization associated with this memory.

project_idstring nullable

The unique identifier of the project associated with this memory.

versionstring nullable

The version of the memory to use. The default version is v1, which is deprecated. We recommend using v2 for new applications.

Response

Successful memory creation

idstring required
event'ADD' | 'UPDATE' | 'DELETE' required