Where does mem0 save memory if not set vector database? #3541
Answered
by
parshvadaftari
hongbo-miao
asked this question in
Q&A
-
|
I saw mem0 supports vector database for memory storage: https://docs.mem0.ai/components/vectordbs/overview. For example, config = {
"vector_store": {
"provider": "qdrant",
"config": {
"collection_name": "test",
"host": "localhost",
"port": 6333,
}
}
}I am wondering when not config = {
"llm": {
"provider": "openai",
"config": {
"model": config.MEMORY_MODEL,
"temperature": config.MEMORY_MODEL_TEMPERATURE,
"max_tokens": config.MEMORY_MODEL_MAX_TOKENS,
"api_key": config.OPENAI_API_KEY,
},
},
"embedder": {
"provider": "openai",
"config": {
"api_key": config.OPENAI_API_KEY,
},
},
} |
Beta Was this translation helpful? Give feedback.
Answered by
parshvadaftari
Oct 6, 2025
Replies: 1 comment 1 reply
-
|
Hey @hongbo-miao that's a great question, since qdrant is used default, mem0 stores locally at /tmp/qdrant by default if no |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
parshvadaftari
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @hongbo-miao that's a great question, since qdrant is used default, mem0 stores locally at /tmp/qdrant by default if no
vector_storeconfig is provided.