graph TD
A[Receive Structured Business Data] -->|Input| B[CSV Generator Agent Start]
B --> C[Initialize CSV Processing]
C -->|Add Headers| D[Insert Header Row]
D -->|Format Data| E[Convert Lines to CSV]
E -->|Validate| F[Check CSV Format]
F -->|If Valid| G[Generate Final CSV File]
F -->|If Invalid| E
G -->|Output| H[Export CSV Text]
H --> I[CrescentTechnical_Business_Search.csv]
subgraph CSV Generator Flow
B
C
D
E
F
G
end
style A fill:#f9f,stroke:#333
style I fill:#9ff,stroke:#333