graph TD
subgraph AI_Birthday_Card_Generator
Start[Start Process] --> Input[Receive Puns and Prompts]
subgraph Card_Generation_1
Input --> Gen1[Generate Card 1]
Gen1 --> Task1A[Skill #222: Create Image with Text]
Task1A --> Task1B[Skill #191: Resize to 1024x1024]
Task1B --> Out1[final_card_1.png]
end
subgraph Card_Generation_2
Input --> Gen2[Generate Card 2]
Gen2 --> Task2A[Skill #222: Create Image with Text]
Task2A --> Task2B[Skill #191: Resize to 1024x1024]
Task2B --> Out2[final_card_2.png]
end
subgraph Card_Generation_3
Input --> Gen3[Generate Card 3]
Gen3 --> Task3A[Skill #222: Create Image with Text]
Task3A --> Task3B[Skill #191: Resize to 1024x1024]
Task3B --> Out3[final_card_3.png]
end
Out1 --> Collect[Collect Final Images]
Out2 --> Collect
Out3 --> Collect
Collect --> End[End Process]
end