Skip to content

Commit 084e417

Browse files
author
harvey_xiang
committed
feat: merge v2
2 parents 6362114 + 0e550c6 commit 084e417

Some content is hidden

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

49 files changed

+1578
-122
lines changed

app/components/AppFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const socialData: SocialLink[] = [
1616
},
1717
{
1818
icon: 'ri:twitter-x-fill',
19-
link: 'https://x.com/MemOS_MemTensor'
19+
link: 'https://x.com/MemOS_dev'
2020
},
2121
{
2222
icon: 'ri:discord-fill',

content/cn/api_docs/api.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"paths": {
2020
"/add/message": {
2121
"post": {
22-
"summary": "添加消息",
22+
"summary": "Add Message",
2323
"description": "该接口用于添加会话消息,支持多类型内容、批量添加。MemOS 会自动解析消息并处理记忆,用于后续对话时召回参考。",
2424
"operationId": "add_message",
2525
"requestBody": {
@@ -78,7 +78,7 @@
7878
},
7979
"/get/message": {
8080
"post": {
81-
"summary": "获取消息",
81+
"summary": "Get Message",
8282
"description": "该接口用于获取指定会话的用户与助手历史对话记录,可按数量限制返回结果。",
8383
"operationId": "get_message",
8484
"requestBody": {
@@ -112,7 +112,7 @@
112112
},
113113
"/search/memory": {
114114
"post": {
115-
"summary": "检索记忆",
115+
"summary": "Search Memory",
116116
"description": "该接口用于检索指定用户的记忆,返回与输入查询内容最相关的记忆片段,供Agent使用。召回的记忆片段包括“事实记忆”、“偏好记忆”、“工具记忆”。",
117117
"operationId": "search_memory",
118118
"requestBody": {
@@ -146,7 +146,7 @@
146146
},
147147
"/chat": {
148148
"post": {
149-
"summary": "对话",
149+
"summary": "Chat",
150150
"description": "",
151151
"operationId": "chat",
152152
"requestBody": {
@@ -210,7 +210,7 @@
210210
},
211211
"/get/memory": {
212212
"post": {
213-
"summary": "获取记忆",
213+
"summary": "Get Memory",
214214
"description": "该接口用于获取某个用户的记忆,包含事实记忆、偏好记忆与工具记忆。",
215215
"operationId": "get_memory",
216216
"requestBody": {
@@ -239,7 +239,7 @@
239239
},
240240
"/delete/memory": {
241241
"post": {
242-
"summary": "删除记忆",
242+
"summary": "Delete Memory",
243243
"description": "该接口用于删除指定用户的记忆,支持批量删除。",
244244
"operationId": "delete_memory",
245245
"requestBody": {
@@ -268,7 +268,7 @@
268268
},
269269
"/add/feedback": {
270270
"post": {
271-
"summary": "添加反馈",
271+
"summary": "Add Feedback",
272272
"description": "该接口用于添加对当前会话消息的反馈,MemOS能够基于用户的反馈更正记忆。",
273273
"operationId": "add_feedback",
274274
"requestBody": {
@@ -297,7 +297,7 @@
297297
},
298298
"/get/status": {
299299
"post": {
300-
"summary": "获取任务状态",
300+
"summary": "Get Task Status",
301301
"description": "获取异步处理任务的状态。",
302302
"operationId": "get_status",
303303
"requestBody": {
@@ -515,7 +515,7 @@
515515
"type": "string"
516516
},
517517
"title": "Knowledgebase IDs",
518-
"description": "选定可以检索的知识库范围"
518+
"description": "该字段用于限制当次搜索可访问的知识库范围,默认为空(即不检索任何知识库)。传入具体知识库 ID,则可检索指定的知识库;传入all,则可检索该项目下所有关联知识库"
519519
},
520520
"memory_limit_number": {
521521
"type": "integer",

content/cn/api_docs/chat/chat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 对话
2+
title: Chat
33
openapi: "POST /chat"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 添加消息
2+
title: Add Message
33
openapi: "POST /add/message"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 删除记忆
2+
title: Delete Memory
33
openapi: "POST /delete/memory"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 获取记忆
2+
title: Get Memory
33
openapi: "POST /get/memory"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 检索记忆
2+
title: Search Memory
33
openapi: "POST /search/memory"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 添加反馈
2+
title: Add Feedback
33
openapi: "POST /add/feedback"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 获取消息
2+
title: Get Message
33
openapi: "POST /get/message"
44
---
55
<!-- Menu Mapping -->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 获取任务状态
2+
title: Get Task Status
33
openapi: "POST /get/status"
44
---
55
<!-- Menu Mapping -->

0 commit comments

Comments
 (0)