Skip to main content
PUT
/
api
/
v2
/
config
/
memory
/
episodic
/
long_term
Update Long Term Memory Config
curl --request PUT \
  --url http://localhost:8080/api/v2/config/memory/episodic/long_term \
  --header 'Content-Type: application/json' \
  --data '
{
  "embedder": "<string>",
  "reranker": "<string>",
  "vector_graph_store": "<string>",
  "enabled": true
}
'
{
  "success": true,
  "message": "<string>"
}

Body

application/json

Specification for updating long-term memory configuration with enabled flag.

embedder
string | null
The ID of the embedder resource to use for long-term memory.
Must reference an embedder configured in the resources section.
reranker
string | null
The ID of the reranker resource to use for long-term memory search.
Must reference a reranker configured in the resources section.
vector_graph_store
string | null
The ID of the vector graph store (database) for storing long-term memories.
Must reference a database configured in the resources section.
enabled
boolean | null

Response

Successful Response

Response model for memory configuration update.

success
boolean
required
Whether the operation succeeded.
message
string
required
Status message describing the result of the operation.