From be216f26bdc45ff7c129bdca902ad5408b4a8424 Mon Sep 17 00:00:00 2001 From: Accusys Date: Mon, 18 May 2026 13:12:32 +0800 Subject: [PATCH] fix: Phase1/Qdrant/PG moved to top-level subgraphs --- .../API_WORKSPACE/modules/10_pipeline.md | 55 +++++++++---------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md b/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md index 452223c..c75c885 100644 --- a/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md +++ b/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md @@ -21,37 +21,36 @@ flowchart TB Pose end - subgraph Ingestion[入庫] - direction TB +subgraph Phase1[Phase 1] + direction TB + ASR & ASRX --> R1[Rule1 Sentence] + R1 --> Vec[Vectorize] + Vec --> P1[Pack1] +end - subgraph Phase1[Phase 1] - direction TB - ASR & ASRX --> R1[Rule1 Sentence] - R1 --> Vec[Vectorize] - Vec --> P1[Pack1] - end +subgraph DB_Qdrant[Qdrant 向量庫] + direction TB + ASRX --> VoiceEmb[Voice Embedding] + Face --> FaceEmb[Face Embedding] +end - subgraph DB_Qdrant[Qdrant 向量庫] - direction TB - ASRX --> VoiceEmb[Voice Embedding] - Face --> FaceEmb[Face Embedding] - end +subgraph DB_PG[PG 向量庫] + direction TB + Vec --> SentEmb[Sentence Embedding] + Story --> StoryEmb[Story Embedding] + FiveW1H --> LLMEmb[LLM Embedding] +end - subgraph DB_PG[PG 向量庫] - direction TB - Vec --> SentEmb[Sentence Embedding] - Story --> StoryEmb[Story Embedding] - FiveW1H --> LLMEmb[LLM Embedding] - end - - Cut & ASR --> R3[Rule3 Scene] - FaceEmb --> Trace[Face Trace] - Trace --> Qdrant & TChunks[Trace Chunks] & TKG - Face & YOLO --> SceneM[Scene Meta] - Face & ASRX --> IDAgent[ID Agent] - Cut & ASR --> A5[5W1H Agent] - A5 --> P2[Pack2] - end +subgraph Ingestion[其他入庫] + direction TB + Cut & ASR --> R3[Rule3 Scene] + FaceEmb --> Trace[Face Trace] + Trace --> Qdrant & TChunks[Trace Chunks] & TKG + Face & YOLO --> SceneM[Scene Meta] + Face & ASRX --> IDAgent[ID Agent] + Cut & ASR --> A5[5W1H Agent] + A5 --> P2[Pack2] +end ``` ### Pipeline Completion Flow