What is the general workflow for processing a single test case in the evaluation pipeline?	Merge the test case with the prompt, feed it into Claude, and then pass the result through the grader.
What is the primary function of the `run prompt` function?	To take a test case, merge it with the task/prompt, generate text using Claude, and return the output.
What is a current limitation of the `run prompt` function's prompt design?	It lacks formatting instructions, which means it may return excessive output rather than specific formats like JSON or Python.
What is the goal of the `run test case` function?	To take an individual test case, call `run prompt`, grade the resulting output, and return a summary dictionary.
How is the grading currently implemented within the `run test case` function?	It is currently hardcoded (e.g., a score of 10).
What is the purpose of the `run eval` function?	To load the entire dataset and loop through every test case, calling `run test case` for each one.
What major component is currently missing from the completed evaluation pipeline?	The grader, which is responsible for taking the input and Claude's result to provide a final assessment.
