Skip to main content
GET
/
api
/
v2
/
config
/
memory
/
episodic
Get Episodic Memory Config
curl --request GET \
  --url http://localhost:8080/api/v2/config/memory/episodic
{
  "long_term_memory": {
    "embedder": "<string>",
    "reranker": "<string>",
    "vector_graph_store": "<string>",
    "enabled": true
  },
  "short_term_memory": {
    "llm_model": "<string>",
    "message_capacity": 123,
    "enabled": true
  },
  "enabled": true
}

Response

200 - application/json

Successful Response

Response model for episodic memory configuration.

long_term_memory
LongTermMemoryConfigResponse · object
Current long-term memory configuration.
short_term_memory
ShortTermMemoryConfigResponse · object
Current short-term memory configuration.
enabled
boolean
default:true
Whether episodic memory as a whole is enabled.