graph TD
A[Extract transcription text from JSON file] --> B{Divide transcription into 6 parts}
B --> C1[Part 1]
B --> C2[Part 2]
B --> C3[Part 3]
B --> C4[Part 4]
B --> C5[Part 5]
B --> C6[Part 6]
C1 --> D1[Analyze text to identify main topic/step]
C2 --> D2[Analyze text to identify main topic/step]
C3 --> D3[Analyze text to identify main topic/step]
C4 --> D4[Analyze text to identify main topic/step]
C5 --> D5[Analyze text to identify main topic/step]
C6 --> D6[Analyze text to identify main topic/step]
D1 --> E1[Generate title for section]
D2 --> E2[Generate title for section]
D3 --> E3[Generate title for section]
D4 --> E4[Generate title for section]
D5 --> E5[Generate title for section]
D6 --> E6[Generate title for section]
D1 --> F1[Generate summary for section]
D2 --> F2[Generate summary for section]
D3 --> F3[Generate summary for section]
D4 --> F4[Generate summary for section]
D5 --> F5[Generate summary for section]
D6 --> F6[Generate summary for section]
C1 --> G1[Determine start timestamp for section]
C2 --> G2[Determine start timestamp for section]
C3 --> G3[Determine start timestamp for section]
C4 --> G4[Determine start timestamp for section]
C5 --> G5[Determine start timestamp for section]
C6 --> G6[Determine start timestamp for section]
E1 --> H[Combine titles, summaries, and timestamps into JSON]
E2 --> H
E3 --> H
E4 --> H
E5 --> H
E6 --> H
F1 --> H
F2 --> H
F3 --> H
F4 --> H
F5 --> H
F6 --> H
G1 --> H
G2 --> H
G3 --> H
G4 --> H
G5 --> H
G6 --> H
H --> I[Output JSON file with 6 section objects]