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
}Get episodic memory configuration.
Returns the current episodic memory configuration including both long-term and short-term memory settings, and the overall enabled status.
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
}Successful Response
Response model for episodic memory configuration.
Current long-term memory configuration.Show child attributes
Current short-term memory configuration.Show child attributes
Whether episodic memory as a whole is enabled.