graph TD
A[Start: Receive Task Objective] --> B[Generate Research Summary]
B --> C[Store Research Summary]
C --> D[Generate 5 Keywords]
D --> E[Store Keywords List]
E --> F[Convert to CSV Format]
F --> G[Save keywords_raw.csv]
G --> H[End: Return keywords-raw]
subgraph Research Phase
B
C
end
subgraph Keyword Generation
D
E
end
subgraph CSV Creation
F
G
end
style A fill:#f9f,stroke:#333
style H fill:#f9f,stroke:#333
style B fill:#bbf,stroke:#333
style C fill:#bbf,stroke:#333
style D fill:#ddf,stroke:#333
style E fill:#ddf,stroke:#333
style F fill:#bfb,stroke:#333
style G fill:#bfb,stroke:#333