Skip to content

Commit f8d8c60

Browse files
authored
feat: API 1.0 (#339)
## Description <!-- Please include a summary of the changes below; Fill in the issue number that this PR addresses (if applicable); Fill in the related MemOS-Docs repository issue or PR link (if applicable); Mention the person who will review this PR (if you know who it is); Replace (summary), (issue), (docs-issue-or-pr-link), and (reviewer) with the appropriate information. 请在下方填写更改的摘要; 填写此 PR 解决的问题编号(如果适用); 填写相关的 MemOS-Docs 仓库 issue 或 PR 链接(如果适用); 提及将审查此 PR 的人(如果您知道是谁); 替换 (summary)、(issue)、(docs-issue-or-pr-link) 和 (reviewer) 为适当的信息。 --> Summary: (summary) Fix: #(issue) Docs Issue/PR: (docs-issue-or-pr-link) Reviewer: @(reviewer) ## Checklist: - [ ] I have performed a self-review of my own code | 我已自行检查了自己的代码 - [ ] I have commented my code in hard-to-understand areas | 我已在难以理解的地方对代码进行了注释 - [ ] I have added tests that prove my fix is effective or that my feature works | 我已添加测试以证明我的修复有效或功能正常 - [ ] I have created related documentation issue/PR in [MemOS-Docs](https://github.com/MemTensor/MemOS-Docs) (if applicable) | 我已在 [MemOS-Docs](https://github.com/MemTensor/MemOS-Docs) 中创建了相关的文档 issue/PR(如果适用) - [ ] I have linked the issue to this PR (if applicable) | 我已将 issue 链接到此 PR(如果适用) - [ ] I have mentioned the person who will review this PR | 我已提及将审查此 PR 的人
2 parents 1f57a62 + a75af07 commit f8d8c60

File tree

113 files changed

+10476
-1193
lines changed

Some content is hidden

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

113 files changed

+10476
-1193
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ on:
1212
- "main"
1313
- "dev"
1414
- "feat/*"
15+
- "test"
1516
pull_request:
1617
branches:
1718
- "main"
1819
- "dev"
1920
- "feat/*"
21+
- "test"
2022

2123
jobs:
2224
build:

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ tmp/
88
# evaluation data
99
*.csv
1010
*.jsonl
11+
**settings.json**
1112
evaluation/*tmp/
1213
evaluation/results
1314
evaluation/.env
@@ -19,7 +20,7 @@ evaluation/scripts/personamem
1920

2021
# benchmarks
2122
benchmarks/
22-
23+
2324
# Byte-compiled / optimized / DLL files
2425
__pycache__/
2526
*.py[cod]
@@ -47,6 +48,7 @@ share/python-wheels/
4748
.installed.cfg
4849
*.egg
4950
MANIFEST
51+
.run
5052

5153
# PyInstaller
5254
# Usually these files are written by a python script from a template
@@ -210,3 +212,5 @@ cython_debug/
210212

211213
# Outputs and Evaluation Results
212214
outputs
215+
216+
evaluation/data/temporal_locomo

.vscode/settings.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

evaluation/scripts/temporal_locomo/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)