graph TD
subgraph Assessment_Creator_Subagent
A[Start] --> B[Gather Course Content]
subgraph Content_Summarization_Silo
B --> C[Task #223a: Generate Course Summary]
C --> D[content_summary.txt]
end
subgraph MCQ_Generation_Silo
D --> E[Task #223b: Generate MCQs]
E --> F[mcq_questions.txt]
end
subgraph Short_Answer_Silo
D --> G[Task #223c: Generate Short Answer Questions]
G --> H[short_answer_questions.txt]
end
subgraph Practical_Tasks_Silo
D --> I[Task #223d: Generate Hands-on Tasks]
I --> J[practical_tasks.txt]
end
subgraph Final_Assembly_Silo
F --> K[Task #223e: Compile Materials]
H --> K
J --> K
K --> L[assessment_materials.txt]
end
L --> M[End]
end
style A fill:#f9f,stroke:#333
style M fill:#f9f,stroke:#333
style D fill:#ffd,stroke:#333
style F fill:#dfd,stroke:#333
style H fill:#dfd,stroke:#333
style J fill:#dfd,stroke:#333
style L fill:#dfd,stroke:#333