MemoryOS 0.1.13__py3-none-any.whl → 0.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of MemoryOS might be problematic. Click here for more details.

Files changed (84) hide show
  1. {memoryos-0.1.13.dist-info → memoryos-0.2.1.dist-info}/METADATA +78 -49
  2. memoryos-0.2.1.dist-info/RECORD +152 -0
  3. memoryos-0.2.1.dist-info/entry_points.txt +3 -0
  4. memos/__init__.py +1 -1
  5. memos/api/config.py +471 -0
  6. memos/api/exceptions.py +28 -0
  7. memos/api/mcp_serve.py +502 -0
  8. memos/api/product_api.py +35 -0
  9. memos/api/product_models.py +159 -0
  10. memos/api/routers/__init__.py +1 -0
  11. memos/api/routers/product_router.py +358 -0
  12. memos/chunkers/sentence_chunker.py +8 -2
  13. memos/cli.py +113 -0
  14. memos/configs/embedder.py +27 -0
  15. memos/configs/graph_db.py +83 -2
  16. memos/configs/llm.py +48 -0
  17. memos/configs/mem_cube.py +1 -1
  18. memos/configs/mem_reader.py +4 -0
  19. memos/configs/mem_scheduler.py +91 -5
  20. memos/configs/memory.py +10 -4
  21. memos/dependency.py +52 -0
  22. memos/embedders/ark.py +92 -0
  23. memos/embedders/factory.py +4 -0
  24. memos/embedders/sentence_transformer.py +8 -2
  25. memos/embedders/universal_api.py +32 -0
  26. memos/graph_dbs/base.py +2 -2
  27. memos/graph_dbs/factory.py +2 -0
  28. memos/graph_dbs/item.py +46 -0
  29. memos/graph_dbs/neo4j.py +377 -101
  30. memos/graph_dbs/neo4j_community.py +300 -0
  31. memos/llms/base.py +9 -0
  32. memos/llms/deepseek.py +54 -0
  33. memos/llms/factory.py +10 -1
  34. memos/llms/hf.py +170 -13
  35. memos/llms/hf_singleton.py +114 -0
  36. memos/llms/ollama.py +4 -0
  37. memos/llms/openai.py +68 -1
  38. memos/llms/qwen.py +63 -0
  39. memos/llms/vllm.py +153 -0
  40. memos/mem_cube/general.py +77 -16
  41. memos/mem_cube/utils.py +102 -0
  42. memos/mem_os/core.py +131 -41
  43. memos/mem_os/main.py +93 -11
  44. memos/mem_os/product.py +1098 -35
  45. memos/mem_os/utils/default_config.py +352 -0
  46. memos/mem_os/utils/format_utils.py +1154 -0
  47. memos/mem_reader/simple_struct.py +13 -8
  48. memos/mem_scheduler/base_scheduler.py +467 -36
  49. memos/mem_scheduler/general_scheduler.py +125 -244
  50. memos/mem_scheduler/modules/base.py +9 -0
  51. memos/mem_scheduler/modules/dispatcher.py +68 -2
  52. memos/mem_scheduler/modules/misc.py +39 -0
  53. memos/mem_scheduler/modules/monitor.py +228 -49
  54. memos/mem_scheduler/modules/rabbitmq_service.py +317 -0
  55. memos/mem_scheduler/modules/redis_service.py +32 -22
  56. memos/mem_scheduler/modules/retriever.py +250 -23
  57. memos/mem_scheduler/modules/schemas.py +189 -7
  58. memos/mem_scheduler/mos_for_test_scheduler.py +143 -0
  59. memos/mem_scheduler/utils.py +51 -2
  60. memos/mem_user/persistent_user_manager.py +260 -0
  61. memos/memories/activation/item.py +25 -0
  62. memos/memories/activation/kv.py +10 -3
  63. memos/memories/activation/vllmkv.py +219 -0
  64. memos/memories/factory.py +2 -0
  65. memos/memories/textual/general.py +7 -5
  66. memos/memories/textual/item.py +3 -1
  67. memos/memories/textual/tree.py +14 -6
  68. memos/memories/textual/tree_text_memory/organize/conflict.py +198 -0
  69. memos/memories/textual/tree_text_memory/organize/manager.py +72 -23
  70. memos/memories/textual/tree_text_memory/organize/redundancy.py +193 -0
  71. memos/memories/textual/tree_text_memory/organize/relation_reason_detector.py +233 -0
  72. memos/memories/textual/tree_text_memory/organize/reorganizer.py +606 -0
  73. memos/memories/textual/tree_text_memory/retrieve/recall.py +0 -1
  74. memos/memories/textual/tree_text_memory/retrieve/reranker.py +2 -2
  75. memos/memories/textual/tree_text_memory/retrieve/searcher.py +6 -5
  76. memos/parsers/markitdown.py +8 -2
  77. memos/templates/mem_reader_prompts.py +105 -36
  78. memos/templates/mem_scheduler_prompts.py +96 -47
  79. memos/templates/tree_reorganize_prompts.py +223 -0
  80. memos/vec_dbs/base.py +12 -0
  81. memos/vec_dbs/qdrant.py +46 -20
  82. memoryos-0.1.13.dist-info/RECORD +0 -122
  83. {memoryos-0.1.13.dist-info → memoryos-0.2.1.dist-info}/LICENSE +0 -0
  84. {memoryos-0.1.13.dist-info → memoryos-0.2.1.dist-info}/WHEEL +0 -0
@@ -1,43 +1,68 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: MemoryOS
3
- Version: 0.1.13
3
+ Version: 0.2.1
4
4
  Summary: Intelligence Begins with Memory
5
5
  License: Apache-2.0
6
- Keywords: memory,llm,language model,memoryOS,agent
6
+ Keywords: memory,llm,language model,memoryOS,agent,kv cache,lora
7
7
  Author: MemTensor
8
- Author-email: lizy@memtensor.cn
9
- Requires-Python: >=3.10,<4.0
8
+ Author-email: MemTensor@memtensor.cn
9
+ Requires-Python: >=3.10
10
+ Classifier: Intended Audience :: Developers
10
11
  Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Programming Language :: Python :: 3
12
+ Classifier: Natural Language :: English
13
+ Classifier: Natural Language :: Chinese (Simplified)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3 :: Only
12
16
  Classifier: Programming Language :: Python :: 3.10
13
17
  Classifier: Programming Language :: Python :: 3.11
14
18
  Classifier: Programming Language :: Python :: 3.12
15
19
  Classifier: Programming Language :: Python :: 3.13
16
- Requires-Dist: accelerate (>=1.7.0,<2.0.0)
17
- Requires-Dist: chonkie (>=1.0.7,<2.0.0)
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Provides-Extra: all
23
+ Provides-Extra: mem-reader
24
+ Provides-Extra: mem-scheduler
25
+ Provides-Extra: tree-mem
26
+ Requires-Dist: chonkie (>=1.0.7,<2.0.0) ; extra == "all"
27
+ Requires-Dist: chonkie (>=1.0.7,<2.0.0) ; extra == "mem-reader"
18
28
  Requires-Dist: fastapi[all] (>=0.115.12,<0.116.0)
19
- Requires-Dist: markitdown[docx,pdf,pptx,xls,xlsx] (>=0.1.1,<0.2.0)
20
- Requires-Dist: neo4j (>=5.28.1,<6.0.0)
29
+ Requires-Dist: fastmcp (>=2.10.5,<3.0.0)
30
+ Requires-Dist: markitdown[docx,pdf,pptx,xls,xlsx] (>=0.1.1,<0.2.0) ; extra == "all"
31
+ Requires-Dist: markitdown[docx,pdf,pptx,xls,xlsx] (>=0.1.1,<0.2.0) ; extra == "mem-reader"
32
+ Requires-Dist: neo4j (>=5.28.1,<6.0.0) ; extra == "all"
33
+ Requires-Dist: neo4j (>=5.28.1,<6.0.0) ; extra == "tree-mem"
21
34
  Requires-Dist: ollama (>=0.4.8,<0.5.0)
22
35
  Requires-Dist: openai (>=1.77.0,<2.0.0)
23
- Requires-Dist: qdrant-client (>=1.14.2,<2.0.0)
24
- Requires-Dist: redis (>=6.2.0,<7.0.0)
25
- Requires-Dist: sentence-transformers (>=4.1.0,<5.0.0)
36
+ Requires-Dist: pika (>=1.3.2,<2.0.0) ; extra == "all"
37
+ Requires-Dist: pika (>=1.3.2,<2.0.0) ; extra == "mem-scheduler"
38
+ Requires-Dist: qdrant-client (>=1.14.2,<2.0.0) ; extra == "all"
39
+ Requires-Dist: redis (>=6.2.0,<7.0.0) ; extra == "all"
40
+ Requires-Dist: redis (>=6.2.0,<7.0.0) ; extra == "mem-scheduler"
41
+ Requires-Dist: schedule (>=1.2.2,<2.0.0) ; extra == "all"
42
+ Requires-Dist: schedule (>=1.2.2,<2.0.0) ; extra == "tree-mem"
43
+ Requires-Dist: scikit-learn (>=1.7.0,<2.0.0)
44
+ Requires-Dist: sentence-transformers (>=4.1.0,<5.0.0) ; extra == "all"
26
45
  Requires-Dist: sqlalchemy (>=2.0.41,<3.0.0)
27
46
  Requires-Dist: tenacity (>=9.1.2,<10.0.0)
47
+ Requires-Dist: torch (>=2.7.1,<3.0.0) ; extra == "all"
28
48
  Requires-Dist: transformers (>=4.51.3,<5.0.0)
49
+ Requires-Dist: volcengine-python-sdk (>=4.0.4,<5.0.0) ; extra == "all"
50
+ Project-URL: Documentation, https://memos-docs.openmem.net/home/overview/
51
+ Project-URL: Homepage, https://memos.openmem.net/
29
52
  Project-URL: Repository, https://github.com/MemTensor/MemOS
53
+ Project-URL: changelog, https://github.com/MemTensor/MemOS/releases
54
+ Project-URL: download, https://pypi.org/project/MemoryOS/#files
55
+ Project-URL: issues, https://github.com/MemTensor/MemOS/issues
56
+ Project-URL: releasenotes, https://github.com/MemTensor/MemOS/releases
30
57
  Description-Content-Type: text/markdown
31
58
 
32
59
  <div align="center">
33
60
  <a href="https://memos.openmem.net/">
34
- <img src="docs/assets/banner_new.gif" alt="MemOS Banner">
61
+ <img src="https://statics.memtensor.com.cn/memos/memos-banner.gif" alt="MemOS Banner">
35
62
  </a>
36
63
 
37
-
38
-
39
64
  <h1 align="center">
40
- <img src="docs/assets/memos_logo.png" alt="MemOS Logo" width="50"/> MemOS 1.0: 星河 (Stellar) <img src="https://img.shields.io/badge/status-Preview-blue" alt="Preview Badge"/>
65
+ <img src="https://statics.memtensor.com.cn/logo/memos_color_m.png" alt="MemOS Logo" width="50"/> MemOS 1.0: 星河 (Stellar) <img src="https://img.shields.io/badge/status-Preview-blue" alt="Preview Badge"/>
41
66
  </h1>
42
67
 
43
68
  <p>
@@ -50,7 +75,10 @@ Description-Content-Type: text/markdown
50
75
  <a href="https://pypi.org/project/MemoryOS">
51
76
  <img src="https://img.shields.io/pypi/pyversions/MemoryOS.svg" alt="Supported Python versions">
52
77
  </a>
53
- <a href="https://memos.openmem.net/docs/home">
78
+ <a href="https://pypi.org/project/MemoryOS">
79
+ <img src="https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-lightgrey" alt="Supported Platforms">
80
+ </a>
81
+ <a href="https://memos-docs.openmem.net/home/overview/">
54
82
  <img src="https://img.shields.io/badge/Documentation-view-blue.svg" alt="Documentation">
55
83
  </a>
56
84
  <a href="https://arxiv.org/abs/2507.03724">
@@ -62,7 +90,7 @@ Description-Content-Type: text/markdown
62
90
  <a href="https://discord.gg/Txbx3gebZR">
63
91
  <img src="https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord" alt="Discord">
64
92
  </a>
65
- <a href="docs/assets/qr_code.png">
93
+ <a href="https://statics.memtensor.com.cn/memos/qr-code.png">
66
94
  <img src="https://img.shields.io/badge/WeChat-Group-07C160.svg?logo=wechat" alt="WeChat Group">
67
95
  </a>
68
96
  <a href="https://opensource.org/license/apache-2-0/">
@@ -73,17 +101,14 @@ Description-Content-Type: text/markdown
73
101
 
74
102
  ---
75
103
 
76
- <a href="https://memos.openmem.net/">
77
- <img src="docs/assets/sota_score.jpg" alt="SOTA SCORE">
78
- </a>
79
-
104
+ <img src="https://statics.memtensor.com.cn/memos/sota_score.jpg" alt="SOTA SCORE">
80
105
 
81
106
  **MemOS** is an operating system for Large Language Models (LLMs) that enhances them with long-term memory capabilities. It allows LLMs to store, retrieve, and manage information, enabling more context-aware, consistent, and personalized interactions.
82
107
 
83
- - **Website**: <a href="https://memos.openmem.net/" target="_blank">https://memos.openmem.net/</a>
84
- - **Documentation**: <a href="https://memos.openmem.net/docs/home" target="_blank">https://memos.openmem.net/docs/home</a>
85
- - **API Reference**: <a href="https://memos.openmem.net/docs/api/info" target="_blank">https://memos.openmem.net/docs/api/info</a>
86
- - **Source Code**: <a href="https://github.com/MemTensor/MemOS" target="_blank">https://github.com/MemTensor/MemOS</a>
108
+ - **Website**: https://memos.openmem.net/
109
+ - **Documentation**: https://memos-docs.openmem.net/home/overview/
110
+ - **API Reference**: https://memos-docs.openmem.net/docs/api/info/
111
+ - **Source Code**: https://github.com/MemTensor/MemOS
87
112
 
88
113
  ## 📈 Performance Benchmark
89
114
 
@@ -97,19 +122,12 @@ MemOS demonstrates significant improvements over baseline memory solutions in mu
97
122
 
98
123
  > 💡 **Temporal reasoning accuracy improved by 159% compared to the OpenAI baseline.**
99
124
 
100
-
101
-
102
125
  ### Details of End-to-End Evaluation on LOCOMO
103
126
 
104
127
  > [!NOTE]
105
128
  > Comparison of LLM Judge Scores across five major tasks in the LOCOMO benchmark. Each bar shows the mean evaluation score judged by LLMs for a given method-task pair, with standard deviation as error bars. MemOS-0630 consistently outperforms baseline methods (LangMem, Zep, OpenAI, Mem0) across all task types, especially in multi-hop and temporal reasoning scenarios.
106
129
 
107
- <a href="https://memos.openmem.net/">
108
- <img src="docs/assets/score_all_end2end.jpg" alt="END2END SCORE">
109
- </a>
110
-
111
-
112
-
130
+ <img src="https://statics.memtensor.com.cn/memos/score_all_end2end.jpg" alt="END2END SCORE">
113
131
 
114
132
  ## ✨ Key Features
115
133
 
@@ -181,34 +199,37 @@ For more detailed examples, please check out the [`examples`](./examples) direct
181
199
 
182
200
  ## 📦 Installation
183
201
 
184
- > [!WARNING]
185
- > MemOS is compatible with Linux, Windows, and macOS.
186
- >
187
- > However, if you're using macOS, please note that there may be dependency issues that are difficult to resolve.
188
- >
189
- > For example, compatibility with macOS 13 Ventura is currently challenging.
190
-
191
202
  ### Install via pip
192
203
 
193
204
  ```bash
194
205
  pip install MemoryOS
195
206
  ```
196
207
 
197
- ### Development Install
208
+ ### Optional Dependencies
209
+
210
+ MemOS provides several optional dependency groups for different features. You can install them based on your needs.
198
211
 
199
- To contribute to MemOS, clone the repository and install it in editable mode:
212
+ | Feature | Package Name |
213
+ | --------------------- | ------------------------- |
214
+ | Tree Memory | `MemoryOS[tree-mem]` |
215
+ | Memory Reader | `MemoryOS[mem-reader]` |
216
+ | Memory Scheduler | `MemoryOS[mem-scheduler]` |
217
+
218
+ Example installation commands:
200
219
 
201
220
  ```bash
202
- git clone https://github.com/MemTensor/MemOS.git
203
- cd MemOS
204
- make install
221
+ pip install MemoryOS[tree-mem]
222
+ pip install MemoryOS[tree-mem,mem-reader]
223
+ pip install MemoryOS[mem-scheduler]
224
+ pip install MemoryOS[tree-mem,mem-reader,mem-scheduler]
205
225
  ```
206
226
 
207
- ### Optional Dependencies
227
+ ### External Dependencies
208
228
 
209
229
  #### Ollama Support
210
230
 
211
231
  To use MemOS with [Ollama](https://ollama.com/), first install the Ollama CLI:
232
+
212
233
  ```bash
213
234
  curl -fsSL https://ollama.com/install.sh | sh
214
235
  ```
@@ -217,6 +238,14 @@ curl -fsSL https://ollama.com/install.sh | sh
217
238
 
218
239
  To use functionalities based on the `transformers` library, ensure you have [PyTorch](https://pytorch.org/get-started/locally/) installed (CUDA version recommended for GPU acceleration).
219
240
 
241
+ #### Download Examples
242
+
243
+ To download example code, data and configurations, run the following command:
244
+
245
+ ```bash
246
+ memos download_examples
247
+ ```
248
+
220
249
  ## 💬 Community & Support
221
250
 
222
251
  Join our community to ask questions, share your projects, and connect with other developers.
@@ -227,7 +256,7 @@ Join our community to ask questions, share your projects, and connect with other
227
256
  - **Discord**: Join our <a href="https://discord.gg/Txbx3gebZR" target="_blank">Discord Server</a>.
228
257
  - **WeChat**: Scan the QR code to join our WeChat group.
229
258
 
230
- <img src="docs/assets/qr_code.png" alt="QR Code" width="600">
259
+ <img src="https://statics.memtensor.com.cn/memos/qr-code.png" alt="QR Code" width="600">
231
260
 
232
261
  ## 📜 Citation
233
262
 
@@ -270,7 +299,7 @@ url = {https://global-sci.com/article/91443/memory3-language-modeling-with-expli
270
299
 
271
300
  ## 🙌 Contributing
272
301
 
273
- We welcome contributions from the community! Please read our [contribution guidelines](https://memos.openmem.net/docs/contribution/overview) to get started.
302
+ We welcome contributions from the community! Please read our [contribution guidelines](https://memos-docs.openmem.net/contribution/overview) to get started.
274
303
 
275
304
  ## 📄 License
276
305
 
@@ -0,0 +1,152 @@
1
+ memos/__init__.py,sha256=3czUjUREtsLbLm6p8dCOw2fODkg70J07DwfEMASGvfk,575
2
+ memos/api/config.py,sha256=2GGkj02WjgHAZAH1WWjLdxP0ihi9Fbuk-3cc7DpJbbQ,19634
3
+ memos/api/exceptions.py,sha256=MfTNXwLwJE7tHwNVTHlJsB3kF14oA0JfA1-S8xrZEus,833
4
+ memos/api/mcp_serve.py,sha256=GtJDZYx4yxKMs4sCddKJbRAjgsbRunr6S2nAT-KeBMs,21270
5
+ memos/api/product_api.py,sha256=pDsxxrw6sF03hmh6dGqahJjlWWKvg_GGs2-TZMy3e8I,954
6
+ memos/api/product_models.py,sha256=YsD2DnBvwU4TquXnp0DMDwKloAAKhC2GQcfjl122PtY,5217
7
+ memos/api/routers/__init__.py,sha256=nbduRsr-7RkfBIYEBkbYkpB-7GG7QZgNfEQwLHbDXpI,21
8
+ memos/api/routers/product_router.py,sha256=yMuNJs9eJ5PMGZR7KNhCfAHO1pUyL5D38N42A0idVM4,14518
9
+ memos/api/start_api.py,sha256=vDKS3D8AEwlDAkpWxHiblzVqcQ3cvGSnnpP4Jhjm3GE,14656
10
+ memos/chunkers/__init__.py,sha256=7lZOTN3e9Yp5XBsDX5wnWJ3tY126cRU9GmfevzJXAtU,67
11
+ memos/chunkers/base.py,sha256=z0rG5vM7FGremQdSZ_3jlTGbsDtlkWAYWdtSAGqpaR4,655
12
+ memos/chunkers/factory.py,sha256=ixpYz41GG3SZW-1ynLvfbhOZ0aGnFi2wUIYT4_Uxh30,693
13
+ memos/chunkers/sentence_chunker.py,sha256=TUeyB1MrAno2aUF6EtQ_EyjXK_SKALEBWy-CGn_Dv70,1452
14
+ memos/cli.py,sha256=lPtcPiLEFbwcSWQMX_pxc7JjoMaeVoQcuyiqB9Ye-nA,3400
15
+ memos/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ memos/configs/base.py,sha256=bOOhEU6HGFTq5jne_TXn8Br72rvAfJHYvYllFUPs12A,2588
17
+ memos/configs/chunker.py,sha256=Ulci0MyhS_FkuV95l7Pr9Vei179aEFEUigwVmtmSDfI,1593
18
+ memos/configs/embedder.py,sha256=e_aOkUamW2NYSBEzsKkw0jNqHERy5GU3A2cSH5G5y68,2750
19
+ memos/configs/graph_db.py,sha256=0LulJMAqzG7cQbpKZYkV_2GFm2l-f4sEyNa7hqDDIQM,4254
20
+ memos/configs/internet_retriever.py,sha256=7x1Sp--skifHQqWvcPFiEOkda6HCCocw6HSO5H127jk,3046
21
+ memos/configs/llm.py,sha256=cso9ZBOdPzOAcgypp2nPFHdynswdG9MZZ-qdgOTEXL8,4175
22
+ memos/configs/mem_chat.py,sha256=TjEQHRG1HpLwCBo3hrn5aVK23rykNtV6Be5p4YIg7F4,2571
23
+ memos/configs/mem_cube.py,sha256=k95dvNxusnyS9w6ciWgNkUXwbHa4HTUEUS-PfPbR0BM,3105
24
+ memos/configs/mem_os.py,sha256=bUuyi6boIjjvYzrlFoCSqchbWF37IcA5BQi03feq7bg,2476
25
+ memos/configs/mem_reader.py,sha256=m5pRr3DxtmOKBFdbnCki_XgG47oKfcasJNwZGXg9gN4,2022
26
+ memos/configs/mem_scheduler.py,sha256=ItXyfpbA4xg2h0CemzZmW8hdESdY-p13yrJOyT6v-yw,5823
27
+ memos/configs/memory.py,sha256=ksLE6JoRhe0Sc_H-efbFFbjv7kzm9lQ9WMqqrn6WsS8,7171
28
+ memos/configs/parser.py,sha256=dy-QoevJbCnkJePKgpzR4oziOzYnS4jB6XH-YrpeMns,1145
29
+ memos/configs/utils.py,sha256=X9NQ6-xURsZROAdS3WT96phVfHcOHgDPOo2Yq68QoKM,242
30
+ memos/configs/vec_db.py,sha256=Gjhhda94pyTDjyJGe2Z6rVEqH4FtViiwq1-7QWhjarM,2335
31
+ memos/dependency.py,sha256=T5jhi9J6EQvx41dP8ma6hdCNn86d1amEP1iMASnrVbA,1842
32
+ memos/deprecation.py,sha256=k2i4bBKqIwu20guwJmPPjOm7reOy19GzLwrTMrIqjPk,7408
33
+ memos/embedders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ memos/embedders/ark.py,sha256=i9dXR_lNXklxT8yUj_GiMIBDMR5tc40ltZMmX3CnJGk,3436
35
+ memos/embedders/base.py,sha256=zOYERcaqBVCyMVndcR6vhFC_O2itEuTM058odDfhTx8,449
36
+ memos/embedders/factory.py,sha256=tyWOvL2IZpWe-NMAvhBPsb4GqGcSUjoHJkZ65qaddEs,1027
37
+ memos/embedders/ollama.py,sha256=8lHeMCqxej44ZgeDsPGL-5almxRBWsYYYflu5LeAf7w,2361
38
+ memos/embedders/sentence_transformer.py,sha256=QJoW7qMbvAzmMUXzIhMHXVFnDFurfzxdoVUHIlslzec,1647
39
+ memos/embedders/universal_api.py,sha256=BpmLL18y2neEAIE4CdC-1qr0uOEOJ6o7V_zycdkJmZk,1270
40
+ memos/exceptions.py,sha256=UnBoZUYdwb1KoQPE-pXSLT4yOjkwxse9fx0rb_MhEzo,531
41
+ memos/graph_dbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ memos/graph_dbs/base.py,sha256=NxcKKKPUk5VBZj0-vA625rNsQeoqtgSd4CSU0YKNcZw,6871
43
+ memos/graph_dbs/factory.py,sha256=ygOS8D_wfQ9ax3frWbSQi7PXFOQnvnU_51EaUM0Ibhg,848
44
+ memos/graph_dbs/item.py,sha256=BfK17hA_hHu7I348jWugP_rb9GS5hpKfgqtYGGHBohk,1450
45
+ memos/graph_dbs/neo4j.py,sha256=zRig8-Zgb0QUz-N7NUIyLlNOhGz2coCtWvnd-tRhwhE,42150
46
+ memos/graph_dbs/neo4j_community.py,sha256=6_1_m3gPl4TxGWdLRCu91vHH5G7E6iBteDQ952hQ844,11382
47
+ memos/hello_world.py,sha256=RV1vXfK1_U_xAvSusqc-4A8wk3yr8WEQ9q88dmBxvnI,3057
48
+ memos/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ memos/llms/base.py,sha256=CF60OpXdSLf-B5bHhQTnomMEkrNCg-SHauu1vo8HpeU,798
50
+ memos/llms/deepseek.py,sha256=gXlInNa9Ts5-qw6nF4yD88vk5-UiW6-1C72DlE8Agok,1992
51
+ memos/llms/factory.py,sha256=DVKMc9Pic36teO2fjIVu3qQulcXh8vYl2hPOJYY3vs4,1153
52
+ memos/llms/hf.py,sha256=zWz-7j2VnhOyytBbZnEJyNLezOFdV7vuMF6JRwbz9-g,15280
53
+ memos/llms/hf_singleton.py,sha256=oxG9rSFZT_MhOWImttDVZfRZvxmpwJ8FarjL8NpgpRM,3502
54
+ memos/llms/ollama.py,sha256=r1HMvSvG_m8gFfwLJhTriJdB6VzKEqz9f9JFs2RJGTw,2732
55
+ memos/llms/openai.py,sha256=yOcdG320q0JFLi7ipHDXoPWpvyeOMFwbzrnXtk2xqec,3832
56
+ memos/llms/qwen.py,sha256=RFVoC_hxFe4dhCQ583fbTcT1AC3jDrKH0r6cDsZ0Cmo,2459
57
+ memos/llms/utils.py,sha256=OcbM9iSpFJpio7sTT5wvxVx-JnqjIx7eSgiRk7dt0ZI,292
58
+ memos/llms/vllm.py,sha256=cBJx61j0InhoOacIinj3EJxFOfWh14a7_GMiFUmsPCk,5624
59
+ memos/log.py,sha256=ocQi2NWlpefgxOJi9EoB0as6tXhLA4dmXuVIgZT52FE,2234
60
+ memos/mem_chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ memos/mem_chat/base.py,sha256=LICB_mwUkdCVKb_r33GEPbrEr-2v3dEnI54cAvhcEew,830
62
+ memos/mem_chat/factory.py,sha256=KKCDG9FrpfY2hD3iJ4GM9x8dN09dyhstP1cOUH_knrY,720
63
+ memos/mem_chat/simple.py,sha256=-DRlE8nKZcGuwEubALK-nUf-wWRbGXkDJXUg8Dxhoyo,7919
64
+ memos/mem_cube/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ memos/mem_cube/base.py,sha256=NoZKz16oO5AAnJ0alcY52Z1c3C1rbGRe8Znz0CCzDnw,864
66
+ memos/mem_cube/general.py,sha256=w1HbDIM7MD6Pu_Pbv4KHgQlxOMaCHvvJk_tmA9rZ_q8,8370
67
+ memos/mem_cube/utils.py,sha256=OrXgkO0pV1Ey6mHoLJo0Ur_JA6VftjVDGja4ZVykTBw,4948
68
+ memos/mem_os/client.py,sha256=0M-WRTlQr7fDAYtq4B8dsMR0PfmyvD-ySMhKcW3Umd0,43
69
+ memos/mem_os/core.py,sha256=4_NCg9jyl3vbxtgevlbF9cADaaR-8TWQGT8zcEPrMpk,38761
70
+ memos/mem_os/main.py,sha256=d1a2z3V5fOgZPPJLdn9ITsHrRlnSxcGp2HGnpjVxJZw,24530
71
+ memos/mem_os/product.py,sha256=4n4SoTPRfi6SAyiTJlLS0QtIc7-0-C-hca4qHuALq6U,47959
72
+ memos/mem_os/utils/default_config.py,sha256=TDijwxXGfcxJeq8jO7f7paCio91dJE9pQDkKlRt39n8,12273
73
+ memos/mem_os/utils/format_utils.py,sha256=6WffvfVdvxlll65IngqF2AogmT53sD01KNVi5Dbm-io,41891
74
+ memos/mem_reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ memos/mem_reader/base.py,sha256=SSuaD3J88XbHsME1Qa-EAgZ57xApPHPHppMSeeS3JZ4,957
76
+ memos/mem_reader/factory.py,sha256=emKnId9BhScSkqCZyLSLWntixnU3wAMIOVdsRpHldJA,766
77
+ memos/mem_reader/memory.py,sha256=f3fAjrs8Jf6mBZWTgzkEZle7XjDwTJHxM1L2sOb85Tg,13288
78
+ memos/mem_reader/simple_struct.py,sha256=TlK2w14xPm14yrjCkfTcJSc0OYOIRWHp6k8JWB9coKE,9740
79
+ memos/mem_scheduler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ memos/mem_scheduler/base_scheduler.py,sha256=dzhUqIx1rhsIhsDo1qmCeqZTwYHUcyiUEhUna3jJSA4,23154
81
+ memos/mem_scheduler/general_scheduler.py,sha256=szKvgLXUb9TWxpgAncReXRH9jTzdKa9ip7CQQPLLEQU,7208
82
+ memos/mem_scheduler/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ memos/mem_scheduler/modules/base.py,sha256=BoEuQFvkcZ9u5Yj619vxQpfjv-2FLNK5_6INW59QvQc,3053
84
+ memos/mem_scheduler/modules/dispatcher.py,sha256=LvofkG6vfJN81mnkPuroTwzDHN4Gnc4klV2YfhANZXs,6215
85
+ memos/mem_scheduler/modules/misc.py,sha256=sJR9fgvs4BjVdvRKIO6Uww6SlWwHP4vhqrDbaX0IRl8,1357
86
+ memos/mem_scheduler/modules/monitor.py,sha256=_SIELwyPbwTRaqp8b0aGktS3DWLT7P-Cmgd8caDynQw,10890
87
+ memos/mem_scheduler/modules/rabbitmq_service.py,sha256=HrFZtH-klLykuHmK_m-qRGX1YRcIJ8PfT-Gi2F5mnMI,12507
88
+ memos/mem_scheduler/modules/redis_service.py,sha256=g587_DCBEWgfVWRLCu2Jj3Cipp7lWcUVYCRnvGnHYt8,5890
89
+ memos/mem_scheduler/modules/retriever.py,sha256=LHFGEonxTVKrk-gC3mWUT3svZrWFmsGKXVlYu3wW5Lk,10477
90
+ memos/mem_scheduler/modules/schemas.py,sha256=Fc5S3SLVqHDAuESjdwLPToUdG2uiW-cco2fvHGjMhhE,12031
91
+ memos/mem_scheduler/mos_for_test_scheduler.py,sha256=rfmI4UGo5iOn-DN0Vp9f6Ypt_kT3yWYdLgZbehvXY4I,5695
92
+ memos/mem_scheduler/scheduler_factory.py,sha256=pw6FKO0EuxFRipMnD22DvcjbM6pdmVfJmRjUvdTaU5E,800
93
+ memos/mem_scheduler/utils.py,sha256=qVh868AhVHlKbBLdQ6ilDE17U5A20tMmhqhi26vfnFU,2382
94
+ memos/mem_user/persistent_user_manager.py,sha256=oKQ6uXlT6v-bWTe99E5mNoPvs9FOxPtaMzNL4zujzP0,8760
95
+ memos/mem_user/user_manager.py,sha256=9XIt4Q2HA1fhh9dbjKRAXh-GTdT43WGYSx-IsST7jZM,15654
96
+ memos/memories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
+ memos/memories/activation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ memos/memories/activation/base.py,sha256=kiC35AOnuofgYMzLxZyVULsfOoVq03BGvi6AXtNvF-I,1151
99
+ memos/memories/activation/item.py,sha256=j1cpz5NLMYIKnA1rOicRIEzWSfINe_HBesdINGI6oSw,1563
100
+ memos/memories/activation/kv.py,sha256=SnYA8pYo8HU9fqjlk3aFhiIR0T7TBdf8ssEWrkVBbdM,8263
101
+ memos/memories/activation/vllmkv.py,sha256=QM6Y8a3dhqGa08_5rbE-JTR4EakNgoEEVfLdVcvmgms,7765
102
+ memos/memories/base.py,sha256=Sr-dEuDc982WwdVREQ2nL8L6rUc0KZPTaBJeYdgx8h8,577
103
+ memos/memories/factory.py,sha256=Z49DRF_VHQJI2UNiTJ_1ouPqg_iCcuV_Tcg5fXkKxlM,1418
104
+ memos/memories/parametric/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ memos/memories/parametric/base.py,sha256=RQK2LeaMRr2rVbfoa0M7RJx4r0dGD_uBXt73eizBVhI,667
106
+ memos/memories/parametric/item.py,sha256=9FcY7kf53Uvl5FGXn23o2c0dI_9aUcYjUqTxKOMlbuI,219
107
+ memos/memories/parametric/lora.py,sha256=TqSI2OjmFi-XXCeM-MchSwh1sAhOwL7_JnOwSy9qpis,1397
108
+ memos/memories/textual/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ memos/memories/textual/base.py,sha256=3XVeuXZY3ZFzZ6zHIE3l5hx7X2PiH7orxvCwrNZ1l3U,2812
110
+ memos/memories/textual/general.py,sha256=HlwTVZ91qxIfSjdKwBXj7SiYnDt8R3mvYewFmBxUA9Y,11144
111
+ memos/memories/textual/item.py,sha256=8tSsiDztsxfyNXWB1TG2E5a4nhIQcuYMJ_BrnPl6osQ,6323
112
+ memos/memories/textual/naive.py,sha256=Z_gfbxI6cQGJ_raOTQic4fnpo493Xq3yEQ8qDV4xplo,6954
113
+ memos/memories/textual/tree.py,sha256=94pBYJaFa9tYIdwz9Whapt5U7OxYBsN8mxbgh_dAQxw,13602
114
+ memos/memories/textual/tree_text_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ memos/memories/textual/tree_text_memory/organize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
+ memos/memories/textual/tree_text_memory/organize/conflict.py,sha256=8sva5baLVmtoaegRBJYZH71NCQa9uHqpdpZoI2aUazs,8667
117
+ memos/memories/textual/tree_text_memory/organize/manager.py,sha256=H1ks4etHfBHlWwYCDoEGIrUclAQdGsLaLBSZlxZ-hr4,13591
118
+ memos/memories/textual/tree_text_memory/organize/redundancy.py,sha256=mPIr3lAJ0aU1VR85Aj9UO9kHrX7UT7j3p-AFKoaOooQ,8183
119
+ memos/memories/textual/tree_text_memory/organize/relation_reason_detector.py,sha256=hHE7lo0JCSSPl_GYY_P-hryzBU4l92lkO92Fbkd_TS4,8510
120
+ memos/memories/textual/tree_text_memory/organize/reorganizer.py,sha256=POY0_DYo1-A2Nui3jpYMJ6OqONSZvMUr4rTzRIE_KnU,23910
121
+ memos/memories/textual/tree_text_memory/retrieve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ memos/memories/textual/tree_text_memory/retrieve/internet_retriever.py,sha256=asSzVcSVOiigN4-4NzFc7wzthGDK6P5sODIDF5W9egA,8467
123
+ memos/memories/textual/tree_text_memory/retrieve/internet_retriever_factory.py,sha256=pBlufTc5-mdWcyKR_R0Syev3QPMtV83mydyIw0Saz4o,3192
124
+ memos/memories/textual/tree_text_memory/retrieve/reasoner.py,sha256=5csoGjviFbN9RJ8dm3B6kjvoC8xbPD8UMiGusefHaf0,2228
125
+ memos/memories/textual/tree_text_memory/retrieve/recall.py,sha256=UEnwou53deoUFUpf63DFxJMoRPEctIz29NYT56FpXYs,5773
126
+ memos/memories/textual/tree_text_memory/retrieve/reranker.py,sha256=qzXAL51s2YrcyqYhXRzFm4V84h1WADfgaN34lw4qMYg,3701
127
+ memos/memories/textual/tree_text_memory/retrieve/retrieval_mid_structs.py,sha256=jZs2S1jtd727gqDKs8clYCOwcqOBnrl_UmFU1FPE0w8,360
128
+ memos/memories/textual/tree_text_memory/retrieve/searcher.py,sha256=SNJWtIQQTiBKEiamUCRvTHIazZyWPqrlKXNU9gByn24,8468
129
+ memos/memories/textual/tree_text_memory/retrieve/task_goal_parser.py,sha256=mAPxg5P3wmAvRVrutpeE3i2yC1R90egUUGdTWyWmq1U,2653
130
+ memos/memories/textual/tree_text_memory/retrieve/utils.py,sha256=JU9_3OTRp1lXHWV6SuRUIO_GjRCPclEu9MrjNZX_kck,1406
131
+ memos/memories/textual/tree_text_memory/retrieve/xinyusearch.py,sha256=0bewmGoHE2n-inHDMlHY2wfpGUzTPSRBm9JkGl63rag,10437
132
+ memos/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ memos/parsers/base.py,sha256=AWgWIZzReDiTqiv6z08_9aG2KHVzc4Bdr0Lowz0mWVI,435
134
+ memos/parsers/factory.py,sha256=hPKTR0wVgMQ5Z9ZL-a9FyHWCpz9UcrG2oSEDYBAoB3g,704
135
+ memos/parsers/markitdown.py,sha256=SDwmZYC6LyiwdU79yuj6mWNMkQx9YrZzZEHU-4JzBwQ,863
136
+ memos/settings.py,sha256=HYNBFRW0CS2Kh4GmMRMA-Yrh3ZhJno4S4B6gx6P3T30,178
137
+ memos/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
+ memos/templates/mem_reader_prompts.py,sha256=wDxF3BRfNaJCR9D8SV7d15LbsO3x-HlT5ikzTV9zJJ8,9767
139
+ memos/templates/mem_scheduler_prompts.py,sha256=PiJWuVHVTk0dwuVD-nr6131h6NlDfxlRhlnxIa05NAM,3373
140
+ memos/templates/mos_prompts.py,sha256=QJrMb4FwMOAVb-SFSCGTuqqzvD_YhBTpdVBvpUIftK0,3595
141
+ memos/templates/tree_reorganize_prompts.py,sha256=kLlMrZU8yH7WMoVn7XF_AkDA-jF_3KDzIkRrj2OUX50,10892
142
+ memos/types.py,sha256=N7XBYxDTdc50KEsS6YxHvYgs23ykGsZ-wNnaJBVdVi4,1791
143
+ memos/vec_dbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ memos/vec_dbs/base.py,sha256=gbw7Gb_zs8Yx8kJIx6aTM-Ylsb4qLkVOFB-iwNJW6Sw,3564
145
+ memos/vec_dbs/factory.py,sha256=Noa4caqzPT9b59i2jzdpAHFCSHiMfDmgRox1POkRRfE,710
146
+ memos/vec_dbs/item.py,sha256=mLrcHF0nWtMCUjScBgaeeSqabQ3vJhKr_6wrU_g25ns,1425
147
+ memos/vec_dbs/qdrant.py,sha256=4KAiSZ64Ulz8EeT2o1DpNDRwnKRF4iiaJbZdq-xrn0c,11052
148
+ memoryos-0.2.1.dist-info/LICENSE,sha256=FU-b6N8tVc7dzUZGyNjUIG1Ihnrh2iuBziq4a1Gl8HU,11358
149
+ memoryos-0.2.1.dist-info/METADATA,sha256=8xi49HjRjLkJIo8Tpvc4W10VbGHEk8TqgUtaFdTVG30,14714
150
+ memoryos-0.2.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
151
+ memoryos-0.2.1.dist-info/entry_points.txt,sha256=p54si8po81Yb-NK2lx5Z0lNr8QV7-5IECtkC6c8MJmI,40
152
+ memoryos-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ memos=memos.cli:main
3
+
memos/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.1.13"
1
+ __version__ = "0.2.1"
2
2
 
3
3
  from memos.configs.mem_cube import GeneralMemCubeConfig
4
4
  from memos.configs.mem_os import MOSConfig