Skip to main content
PUT
/
api
/
v2
/
config
/
memory
Update Memory Config
curl --request PUT \
  --url http://localhost:8080/api/v2/config/memory \
  --header 'Content-Type: application/json' \
  --data '
{
  "episodic_memory": {
    "enabled": true,
    "long_term_memory_enabled": true,
    "short_term_memory_enabled": true,
    "long_term_memory": {
      "embedder": "<string>",
      "reranker": "<string>",
      "vector_graph_store": "<string>"
    },
    "short_term_memory": {
      "llm_model": "<string>",
      "message_capacity": 123
    }
  },
  "semantic_memory": {
    "enabled": true,
    "database": "<string>",
    "llm_model": "<string>",
    "embedding_model": "<string>",
    "ingestion_trigger_messages": 123,
    "ingestion_trigger_age_seconds": 123
  }
}
'
{
  "success": true,
  "message": "<string>"
}

Body

application/json

Requires at least one of the two top-level fields.

episodic_memory
object
semantic_memory
object

Response

Successful Response

success
boolean
required
message
string
required