Skip to content

Commit 9d869ed

Browse files
authored
Merge branch 'dev' into dev
2 parents e098305 + 1462b7a commit 9d869ed

File tree

87 files changed

+5740
-973
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5740
-973
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,9 @@ MemOS is licensed under the [Apache 2.0 License](./LICENSE).
251251

252252
Stay up to date with the latest MemOS announcements, releases, and community highlights.
253253

254+
- **2025-07-29** – 🎉 MemOS v0.2.2 (Nebula Update): Internet search+Nebula DB integration, refactored memory scheduler, KV Cache stress tests, MemCube Cookbook release (CN/EN), and 4b/1.7b/0.6b memory ops models.
255+
- **2025-07-21** – 🎉 MemOS v0.2.1 (Neo Release): Lightweight Neo version with plaintext+KV Cache functionality, Docker/multi-tenant support, MCP expansion, and new Cookbook/Mud game examples.
256+
- **2025-07-11** – 🎉 *MemOS v0.2.0 (Cross-Platform)*: Added doc search/bilingual UI, MemReader-4B (local deploy), full Win/Mac/Linux support, and playground end-to-end connection.
254257
- **2025-07-07** – 🎉 *MemOS 1.0 (Stellar) Preview Release*: A SOTA Memory OS for LLMs is now open-sourced.
255258
- **2025-07-04** – 🎉 *MemOS Paper Released*: [MemOS: A Memory OS for AI System](https://arxiv.org/abs/2507.03724) was published on arXiv.
256259
- **2025-05-28** – 🎉 *Short Paper Uploaded*: [MemOS: An Operating System for Memory-Augmented Generation (MAG) in Large Language Models](https://arxiv.org/abs/2505.22101) was published on arXiv.

docs/openapi.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@
884884
"type": "string",
885885
"title": "Session Id",
886886
"description": "Session ID for the MOS. This is used to distinguish between different dialogue",
887-
"default": "a47d75a0-5ee8-473f-86c4-3f09073fd59f"
887+
"default": "842877f4-c3f7-4c22-ad38-5950026870fe"
888888
},
889889
"chat_model": {
890890
"$ref": "#/components/schemas/LLMConfigFactory",
@@ -905,6 +905,10 @@
905905
],
906906
"description": "Memory scheduler configuration for managing memory operations"
907907
},
908+
"user_manager": {
909+
"$ref": "#/components/schemas/UserManagerConfigFactory",
910+
"description": "User manager configuration for database operations"
911+
},
908912
"max_turns_window": {
909913
"type": "integer",
910914
"title": "Max Turns Window",
@@ -1370,6 +1374,25 @@
13701374
"title": "UserListResponse",
13711375
"description": "Response model for user list operations."
13721376
},
1377+
"UserManagerConfigFactory": {
1378+
"properties": {
1379+
"backend": {
1380+
"type": "string",
1381+
"title": "Backend",
1382+
"description": "Backend for user manager",
1383+
"default": "sqlite"
1384+
},
1385+
"config": {
1386+
"additionalProperties": true,
1387+
"type": "object",
1388+
"title": "Config",
1389+
"description": "Configuration for the user manager backend"
1390+
}
1391+
},
1392+
"type": "object",
1393+
"title": "UserManagerConfigFactory",
1394+
"description": "Factory for user manager configurations."
1395+
},
13731396
"UserResponse": {
13741397
"properties": {
13751398
"code": {

0 commit comments

Comments
 (0)