fix: add voice+face embedding to pipeline diagram
This commit is contained in:
@@ -8,23 +8,27 @@
|
|||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart TB
|
flowchart TB
|
||||||
subgraph Processors[10 Processors — execution order]
|
subgraph Processors[10 Processors]
|
||||||
direction TB
|
direction TB
|
||||||
Cut -.-> ASR
|
Cut --> ASR
|
||||||
ASR -.-> ASRX
|
ASR --> ASRX
|
||||||
YOLO -.-> VisualChunk
|
ASRX --> Story
|
||||||
ASRX & Cut & YOLO & Face -.-> Story
|
YOLO --> VisualChunk
|
||||||
Story -.-> FiveW1H
|
VisualChunk --> Story
|
||||||
|
Face --> Story
|
||||||
|
Story --> FiveW1H
|
||||||
OCR
|
OCR
|
||||||
Pose
|
Pose
|
||||||
end
|
end
|
||||||
|
|
||||||
subgraph Ingestion[入庫 — triggered after processors complete]
|
subgraph Ingestion[入庫]
|
||||||
direction TB
|
direction TB
|
||||||
ASR & ASRX --> R1[Rule1 Sentence]
|
ASR & ASRX --> R1[Rule1 Sentence]
|
||||||
R1 --> Vec[Auto-Vectorize] & P1[Pack1]
|
R1 --> Vec[Vectorize] & P1[Pack1]
|
||||||
Cut & ASR --> R3[Rule3 Scene]
|
Cut & ASR --> R3[Rule3 Scene]
|
||||||
Face --> Trace
|
ASRX --> VoiceEmb[Voice Embedding]
|
||||||
|
Face --> FaceEmb[Face Embedding]
|
||||||
|
FaceEmb --> Trace[Face Trace]
|
||||||
Trace --> Qdrant & TChunks[Trace Chunks] & TKG
|
Trace --> Qdrant & TChunks[Trace Chunks] & TKG
|
||||||
Face & YOLO --> SceneM[Scene Meta]
|
Face & YOLO --> SceneM[Scene Meta]
|
||||||
Face & ASRX --> IDAgent[ID Agent]
|
Face & ASRX --> IDAgent[ID Agent]
|
||||||
|
|||||||
Reference in New Issue
Block a user