submaster/DOCS/diagrams/artifacts.mmd
Cesar Mendivil 1264ae8587 Add diagrams and documentation for the Whisper Pipeline architecture
- Created flowcharts for Infra adapters, artifacts, high-level process, models, and tests in the DOCS/diagrams directory.
- Added a mkdocs.yml configuration file for documentation site setup.
2025-10-24 16:49:49 -07:00

16 lines
341 B
Plaintext

flowchart TD
A[Workdir /tmp/full_pipeline_*] --> B[extracted.wav]
B --> C[segments.json / segments.srt]
C --> D[kokoro_chunks/]
D --> E[final_audio.wav]
E --> F[final_video.mp4]
F --> G[output/<basename>/]
subgraph Logs [Logs]
L1[logs/infra]
L2[logs/usecases]
L3[logs/cli]
end
B -.-> L1
C -.-> L2
E -.-> L1