fix: correct naming - story sentence embedding / llm summary sentence embedding

This commit is contained in:
Accusys
2026-05-18 13:20:17 +08:00
parent 35a94aa979
commit 13bc3f7f80

View File

@@ -41,8 +41,8 @@ end
subgraph DB_PG[PG 向量庫]
direction TB
Vec --> SentEmb[Sentence Embedding]
Story --> StoryEmb[Story Embedding]
FiveW1H --> LLMEmb[LLM Embedding]
Story --> StorySentEmb[Story Sentence Embedding]
FiveW1H --> LLMSentEmb[LLM Summary Sentence Embedding]
end
subgraph Ingestion[其他入庫]
@@ -104,8 +104,8 @@ These steps run after the 10 processors and are **required for pipeline completi
| 8 | **TKG Builder** | Face Trace done | `tkg_nodes` + `tkg_edges` tables have rows |
| 9 | **TMDb Face Matching** | TMDb enabled + Face done | `face_detections.identity_id` IS NOT NULL |
| 10 | **Heuristic Scene Metadata** | Face + YOLO done | `{file_uuid}.scene_meta.json` exists on disk |
| 11 | **Story Embedding (PG)** | Story done | `chunk.embedding` IS NOT NULL for `story_parent` chunks |
| 12 | **5W1H Embedding (PG)** | 5W1H done | `chunk.embedding` IS NOT NULL for `llm_parent` chunks |
| 11 | **Story Sentence Embedding (PG)** | Story done | `chunk.embedding` IS NOT NULL for story chunks |
| 12 | **LLM Summary Sentence Embedding (PG)** | 5W1H done | `chunk.embedding` IS NOT NULL for llm chunks |
| 13 | **Voice Embedding (Qdrant)** | ASRX done | Qdrant voice collection populated |
| 14 | **Face Embedding (Qdrant)** | Face done | Qdrant face collection populated |
| 15 | **Identity Agent** | Face + ASRX done | `identities` with `source = 'identity_agent'` |