This is the original instruction path from the build phase. For the current results home, return to Proof Evals Results.

Research Review

Review the study design first by reading the Evaluation Design. It explains the methodology, task set, rubric, scoring protocol, and limitations.

For sendable study context, play through the Supplemental Eval Findings Review. The generated transcript review UI is available at /review/.

Core Path

StepTitlePurpose
0SetupClone the repo, install dependencies, configure .env, and verify the local commands.
1Project OverviewUnderstand the research question, data design, deliverables, and guardrails.
2Evaluation DesignReview the task set, rubric, scoring protocol, and methodology behind the study.
3Work Area 1: Conversation RunnerImplement run_conversations.py so the harness can build and save scripted transcripts.
4Work Area 2: Judge ScorerImplement run_judge.py so an LLM judge can score saved transcripts.
5Work Area 3: AnalysisImplement analyze.py so human and judge scores become useful tables.
6Research Workflow and Follow-UpRun the study in the right order, write findings, and choose optional extensions.
7Model Call ParametersAdd the small LiteLLM helper and smoke-test real provider calls.

Current Milestone

Andrew is currently finishing Work Area 1: Conversation Runner. The next implementation order is:

  1. Finish run_task_conversation so it returns alternating user/assistant message dictionaries for dry-run, stub, and real-model paths.
  2. Implement save_transcript so stub and real runs write JSON and Markdown files under evals/transcripts/{model_name}/.
  3. Implement main so it loads files, validates tasks, selects tasks/models, runs each task/model pair, prints dry-run previews, and saves non-dry-run transcripts.
  4. Add real provider calls only after dry-run and stub transcript generation work end to end.

The later work areas depend on those outputs. The judge scorer reads saved transcript JSON files, the analysis script reads human and judge score CSVs, and the research workflow should be followed only after human scoring is complete.

What You Will Build

This project turns a scaffolded repo into a working evaluation harness for AI proof tutoring. You will build the pieces needed to collect model-student transcripts, score those transcripts with both human and automated judgment, and analyze where models help or fail as proof-writing tutors.

The work has three implementation areas:

  • Conversation collection: build the runner that loads the proof tasks, simulates three-turn student conversations, supports dry-run and stub testing, calls real models only when ready, and saves transcripts in JSON and Markdown.
  • Automated judging: build the scorer that reads transcripts, combines them with the rubric and private reference notes, asks an LLM judge for structured scores, and writes judge results to CSV.
  • Analysis: build the report generator that compares human and judge scores, summarizes performance by model/task/rubric dimension, and produces Markdown tables for the final findings writeup.

Plan on roughly 12-20 hours for the implementation and first study pass, depending on debugging time and API setup. A reasonable breakdown is 1 hour for setup and reading, 4-7 hours for the conversation runner, 3-5 hours for the judge scorer, 2-4 hours for analysis, and 2-3 hours to run the study workflow and start the findings writeup. If you run and hand-score all six configured models, reserve additional time for human scoring because the full suite produces 60 transcripts.

The project should be completed in order. First make the dry-run and stub paths work without API calls. Then add real model calls, collect transcripts, score them manually, run the LLM judge, and use the analysis output to write findings.