file or mem0)Search the documentation
Start typing to find what you're looking for
/api/memory/settings BearerRetrieve the current memory backend configuration including the active provider (file store or Mem0), LLM and embedder settings, vector store configuration, and auto-learn status.
Returns the current memory backend configuration, including the active backend, mem0 provider settings, and auto-learn status.
memory_backend stringfile or mem0)mem0_llm_provider stringollama, openai, anthropic)mem0_llm_model stringllama3.2)mem0_embedder_provider stringollama, openai)mem0_embedder_model stringnomic-embed-text)mem0_vector_store stringqdrant)mem0_ollama_base_url stringmem0_auto_learn booleancurl -X GET "http://localhost:8000/api/memory/settings" \ -H "Authorization: Bearer <token>"const response = await fetch("http://localhost:8000/api/memory/settings", { headers: { "Authorization": "Bearer <token>" }});const data = await response.json();console.log(data);import requests
response = requests.get( "http://localhost:8000/api/memory/settings", headers={"Authorization": "Bearer <token>"})print(response.json()){ "memory_backend": "mem0", "mem0_llm_provider": "ollama", "mem0_llm_model": "llama3.2", "mem0_embedder_provider": "ollama", "mem0_embedder_model": "nomic-embed-text", "mem0_vector_store": "qdrant", "mem0_ollama_base_url": "http://localhost:11434", "mem0_auto_learn": true}curl -X GET "http://localhost:8000/api/memory/settings" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>"const response = await fetch("http://localhost:8000/api/memory/settings", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer <token>"
},
});
const data = await response.json();
console.log(data);import requests
response = requests.get(
"http://localhost:8000/api/memory/settings",
headers={'Content-Type':'application/json','Authorization':'Bearer <token>'},
)
print(response.json())package main
import (
"fmt"
"net/http"
"io"
)
func main() {
req, _ := http.NewRequest("GET", "http://localhost:8000/api/memory/settings", nil)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer <token>")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}