From 56e6d2a98544d90ac74a7a0c27fd149a5a43bcd5 Mon Sep 17 00:00:00 2001 From: Accusys Date: Mon, 18 May 2026 13:10:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20restructure=20=E5=85=A5=E5=BA=93=20into?= =?UTF-8?q?=20Phase1,=20Qdrant=E5=90=91=E9=87=8F=E5=BA=AB,=20PG=E5=90=91?= =?UTF-8?q?=E9=87=8F=E5=BA=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../API_WORKSPACE/modules/10_pipeline.md | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md b/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md index 009c350..452223c 100644 --- a/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md +++ b/docs_v1.0/API_WORKSPACE/modules/10_pipeline.md @@ -23,16 +23,28 @@ flowchart TB subgraph Ingestion[入庫] direction TB - ASR & ASRX --> R1[Rule1 Sentence] - R1 --> Vec[Vectorize] & P1[Pack1] - Cut & ASR --> R3[Rule3 Scene] - subgraph VectorDB[向量庫] + 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_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]