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>"
}Update long-term memory configuration.
This endpoint updates the long-term memory configuration at runtime. Only the fields you supply are modified; omitted fields retain their current values.
The configuration includes:
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>"
}Specification for updating long-term memory configuration with enabled flag.
The ID of the embedder resource to use for long-term memory.
Must reference an embedder configured in the resources section.The ID of the reranker resource to use for long-term memory search.
Must reference a reranker configured in the resources section.The ID of the vector graph store (database) for storing long-term memories.
Must reference a database configured in the resources section.