graph TD
A[Start: Receive Input] --> B[Parse Keywords and Style Description]
B --> C1[Generate First Design]
B --> C2[Generate Second Design]
C1 --> D1[Use Ideogram API for Design 1]
C2 --> D2[Use Ideogram API for Design 2]
D1 --> E1[Remove Background - Design 1]
D2 --> E2[Remove Background - Design 2]
E1 --> F1[Upscale to 4500x5400 - Design 1]
E2 --> F2[Upscale to 4500x5400 - Design 2]
F1 --> G1[Set 300 DPI - Design 1]
F2 --> G2[Set 300 DPI - Design 2]
G1 --> H1[Save as Variation1_final.png]
G2 --> H2[Save as Variation2_final.png]
H1 --> I[Package Outputs]
H2 --> I
I --> J[End: Return Final Images]
subgraph API Calls
D1 & D2
E1 & E2
F1 & F2
end
subgraph Image Processing
G1 & G2
H1 & H2
end