docs: update docs_v1.0/ documentation

- Fix markdown lint issues (MD030, MD047, MD051, MD028, MD005)
- Update AI agents, architecture, implementation docs
- Add new identity, face recognition, and API documentation
- Remove deprecated face/person API guides
This commit is contained in:
Warren
2026-04-30 15:10:41 +08:00
parent 8f05a7c188
commit 4d75b2e251
185 changed files with 21071 additions and 1605 deletions

View File

@@ -3072,15 +3072,15 @@ Alternatively, we can restart the worker and let it process the remaining pendin
**Input:**
```json
{
"command": "cd /Users/accusys/momentry_core_0.1 && psql \"postgres://accusys@localhost:5432/momentry\" -c \"SELECT COUNT(*) FROM chunks WHERE video_uuid = 'a03485a40b2df2d3' AND chunk_type = 'sentence';\"",
"command": "cd /Users/accusys/momentry_core_0.1 && psql \"postgres://accusys@localhost:5432/momentry\" -c \"SELECT COUNT(*) FROM chunks WHERE file_uuid = 'a03485a40b2df2d3' AND chunk_type = 'sentence';\"",
"description": "Check existing ASR chunks"
}
```
**Output:**
```
ERROR: column "video_uuid" does not exist
LINE 1: SELECT COUNT(*) FROM chunks WHERE video_uuid = 'a03485a40b2d...
ERROR: column "file_uuid" does not exist
LINE 1: SELECT COUNT(*) FROM chunks WHERE file_uuid = 'a03485a40b2d...
^
```
@@ -3140,7 +3140,7 @@ Let's check schema of chunks table. Let's get column names.
_Thinking:_
So column `uuid` is the video_uuid. Let's count. Let's also check for chunk_type 'sentence' (lowercase?). Let's run.
So column `uuid` is the file_uuid. Let's count. Let's also check for chunk_type 'sentence' (lowercase?). Let's run.
**Tool: bash**
@@ -4094,7 +4094,7 @@ _Thinking:_
最近的提交使用「fix:」和「docs:」。這次更改很多包括文件、程式碼、新功能。可能用「feat: add v1.0 docs and fix worker implementation」之類的。或者分成多個提交但用戶想要存檔所以一個大提交也可以。使用「feat: implement worker fixes and add API v1.0 documentation」。就這麼做。然後推送到 Gitea。
提交前,檢查是否有任何檔案應該忽略,比如 .pyc 檔案或 .DS_Store。我們已經暫存了 scripts/__pycache__/redis_publisher.cpython-311.pyc這可能不應該提交。最好從暫存中移除。還有 .DS_Store 檔案在 docs_v1.0/.DS_Store但似乎沒有被暫存因為它是新檔案且被忽略檢查 .gitignore。先檢查 .gitignore 是否包含 .DS_Store。然後從暫存中移除 .pyc 檔案。使用 git rm --cached。但 .pyc 檔案已被修改,不是新檔案。可能忽略規則已存在。不過還是先檢查 .gitignore。
提交前,檢查是否有任何檔案應該忽略,比如 .pyc 檔案或 .DS_Store。我們已經暫存了 scripts/**pycache**/redis_publisher.cpython-311.pyc這可能不應該提交。最好從暫存中移除。還有 .DS_Store 檔案在 docs_v1.0/.DS_Store但似乎沒有被暫存因為它是新檔案且被忽略檢查 .gitignore。先檢查 .gitignore 是否包含 .DS_Store。然後從暫存中移除 .pyc 檔案。使用 git rm --cached。但 .pyc 檔案已被修改,不是新檔案。可能忽略規則已存在。不過還是先檢查 .gitignore。
我們先提交,然後推送到 Gitea。然後繼續處理 worker。
@@ -4288,4 +4288,3 @@ _Thinking:_
```
---