curl --request GET \
--url http://localhost:8080/api/v2/config/memory/semantic{
"enabled": false,
"database": "<string>",
"llm_model": "<string>",
"embedding_model": "<string>"
}Get semantic memory configuration.
Returns the current semantic memory configuration including database, LLM model, embedding model, and enabled status.
curl --request GET \
--url http://localhost:8080/api/v2/config/memory/semantic{
"enabled": false,
"database": "<string>",
"llm_model": "<string>",
"embedding_model": "<string>"
}Successful Response
Response model for semantic memory configuration.
Whether semantic memory is enabled. When set to true, the required
fields (database, llm_model, embedding_model) must also be configured.
Set to false to disable semantic memory entirely.The ID of the database to use for semantic memory storage.
Must reference a database configured in the resources section.The ID of the language model to use for semantic memory extraction.
Must reference a language model configured in the resources section.The ID of the embedder to use for semantic memory vector search.
Must reference an embedder configured in the resources section.