What are workflows and agents?	Strategies used to handle user tasks that cannot be completed by Claude in a single request.
When should you use an Agent?	When you are unsure about the details of a task that Claude needs to solve.
When should you use a Workflow?	When you have a very precise idea of the task and know the exact series of steps to complete it.
Define a workflow.	A series of calls to Claude meant to solve a very specific problem where the steps are known ahead of time.
What is the purpose of the 3D modeling workflow example?	To convert an uploaded image of a metal part into a STEP file.
What Python library is used in the 3D modeling workflow to create the model?	CADquery.
What specific workflow pattern was described in the transcript?	Evaluator Optimizer.
In the Evaluator Optimizer, what is the role of the Producer?	It generates the output, such as using CADquery to model a part and create a rendering.
In the Evaluator Optimizer, what is the role of the Grader?	It examines the output to decide if it meets the required criteria.
Does identifying a workflow automatically implement it?	No, you must still write the actual code to implement the workflow.
