Skip to content

Commit 7422539

Browse files
authored
docs: Add FAQ section for common questions about MemOS Memory OS (#1732)
* docs: Add FAQ section for common questions about MemOS Memory OS * docs: Add FAQ section for common questions
1 parent 6d764f9 commit 7422539

1 file changed

Lines changed: 120 additions & 0 deletions

File tree

README.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,126 @@ Your lobsters and Hermes Agents now have **the best** memory system — choose *
264264

265265
<br>
266266

267+
268+
## FAQ
269+
270+
### What is MemOS?
271+
272+
MemOS is a **Memory Operating System** for LLMs and AI agents that unifies store/retrieve/manage for long-term memory. It enables context-aware and personalized interactions with knowledge base (KB), multi-modal memory, tool memory, and enterprise-grade optimizations built in.
273+
274+
### What are the benchmark results?
275+
276+
| Benchmark | MemOS Result | Improvement |
277+
|-----------|--------------|-------------|
278+
| LoCoMo | 75.80 | - |
279+
| LongMemEval | +40.43% vs baseline | - |
280+
| PrefEval-10 | +2568% | - |
281+
| PersonaMem | +40.75% | - |
282+
| **vs OpenAI Memory** | +43.70% Accuracy | - |
283+
| **Token Savings** | 35.24% | - |
284+
285+
### How does MemOS compare to other memory solutions?
286+
287+
| Feature | MemOS | mem0 | LangChain Memory | Letta |
288+
|---------|-------|------|------------------|-------|
289+
| Multi-Modal Memory | ✅ Text/Images/Tools | ❌ Text only | ❌ Text only | ❌ Text only |
290+
| Knowledge Base | ✅ Multi-Cube KB | ❌ No KB | ⚠️ RAG only | ❌ No KB |
291+
| Memory Feedback | ✅ Natural language | ❌ No | ❌ No | ❌ No |
292+
| Graph Memory | ✅ Inspectable/Editable | ❌ Black-box | ❌ Black-box | ❌ Limited |
293+
| Async Ingestion | ✅ MemScheduler | ❌ No | ❌ No | ❌ No |
294+
| Open Source | ✅ Apache 2.0 | ✅ MIT | ✅ Apache | ✅ MIT |
295+
| ArXiv Paper | ✅ 2507.03724 | ❌ No | ❌ No | ❌ No |
296+
297+
### What are the key features?
298+
299+
| Feature | Description |
300+
|---------|-------------|
301+
| **Unified Memory API** | Single API for add/retrieve/edit/delete, graph-structured, inspectable |
302+
| **Multi-Modal Memory** | Text, images, tool traces, personas retrieved together |
303+
| **Multi-Cube KB** | Composable memory cubes for users/projects/agents |
304+
| **Async Ingestion** | MemScheduler with millisecond latency |
305+
| **Memory Feedback** | Natural-language correction/supplement/replacement |
306+
| **Self-evolving Memory** | L1 traces, L2 policies, L3 world model, crystallized Skills |
307+
308+
### What deployment options are available?
309+
310+
| Option | Description |
311+
|--------|-------------|
312+
| **Cloud API** | Hosted service at memos.openmem.net |
313+
| **Self-Hosted** | Local/private deployment via Docker |
314+
| **Quick Mode** | Lightweight deployment |
315+
| **Full Mode** | Complete deployment |
316+
317+
### How do I get started with Cloud API?
318+
319+
1. Sign up at [MemOS dashboard](https://memos-dashboard.openmem.net/)
320+
2. Go to **API Keys** and copy your key
321+
3. Use the Cloud API for memory operations
322+
323+
See [Cloud Getting Started](https://memos-docs.openmem.net/memos_cloud/quick_start/).
324+
325+
### How do I self-host MemOS?
326+
327+
```bash
328+
# Clone
329+
git clone https://github.com/MemTensor/MemOS.git
330+
cd MemOS
331+
332+
# Install dependencies
333+
pip install -r ./docker/requirements.txt
334+
335+
# Configure .env (OPENAI_API_KEY, etc.)
336+
cp docker/.env.example MemOS/.env
337+
338+
# Start service
339+
# See docs for full setup
340+
```
341+
342+
### What LLM providers are supported?
343+
344+
| Provider | Setting |
345+
|----------|---------|
346+
| OpenAI | `MOS_CHAT_MODEL_PROVIDER=openai` |
347+
| Azure OpenAI | `MOS_CHAT_MODEL_PROVIDER=azure` |
348+
| Qwen (DashScope) | `MOS_CHAT_MODEL_PROVIDER=qwen` |
349+
| DeepSeek | `MOS_CHAT_MODEL_PROVIDER=deepseek` |
350+
| MiniMax | `MOS_CHAT_MODEL_PROVIDER=minimax` |
351+
| Ollama | `MOS_CHAT_MODEL_PROVIDER=ollama` |
352+
| HuggingFace | `MOS_CHAT_MODEL_PROVIDER=huggingface` |
353+
| vLLM | `MOS_CHAT_MODEL_PROVIDER=vllm` |
354+
355+
### What plugins are available?
356+
357+
| Plugin | Purpose |
358+
|--------|---------|
359+
| **memos-local-plugin 2.0** | Local-first memory for Hermes Agent & OpenClaw |
360+
| **OpenClaw Cloud Plugin** | Hosted memory service, 72% token reduction |
361+
| **OpenClaw Local Plugin** | 100% on-device SQLite memory |
362+
363+
### What is the memory architecture?
364+
365+
| Layer | Purpose |
366+
|-------|---------|
367+
| **L1 Traces** | Raw interaction history |
368+
| **L2 Policies** | Learned preferences/behaviors |
369+
| **L3 World Model** | User understanding |
370+
| **Crystallized Skills** | Reusable patterns |
371+
372+
### What license does MemOS use?
373+
374+
Apache 2.0 License (see [LICENSE](./LICENSE)).
375+
376+
### Where can I get help?
377+
378+
| Resource | Link |
379+
|----------|------|
380+
| Documentation | [memos-docs.openmem.net](https://memos-docs.openmem.net/home/overview/) |
381+
| ArXiv Paper | [2507.03724](https://arxiv.org/abs/2507.03724) |
382+
| Discord | [Join Server](https://discord.gg/Txbx3gebZR) |
383+
| X/Twitter | [@MemOS_dev](https://x.com/MemOS_dev) |
384+
| GitHub Issues | [Submit issues](https://github.com/MemTensor/MemOS/issues) |
385+
| Awesome-AI-Memory | [IAAR-Shanghai/Awesome-AI-Memory](https://github.com/IAAR-Shanghai/Awesome-AI-Memory) |
386+
267387
## 📚 Resources
268388

269389
- **Awesome-AI-Memory**

0 commit comments

Comments
 (0)