- 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.
16 lines
341 B
Plaintext
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
|