Historical GPT-5.6 HTML/UI and source-review pilots
These August measurements belong to GPT-5.6 and do not measure the September GPT-6 recommendations.
HTML/UI implementation → Sol/medium
Three model-and-effort combinations built two pages. We checked desktop and mobile output, then had Sol/xhigh assess screenshots against a fixed defect checklist without knowing which model produced them.
- Sol/medium: 2/2 passed; mean quality 0.9175.
- Terra/medium: 2/2 passed; mean quality 0.86125.
- Sol/xhigh: 1/2 passed; mean quality 0.82; one critical defect.
Subject cost/outcome: $0.212954. Jury verification added 31,074 measured tokens across the two recommended-route cases, but the pilot did not retain their component split; jury dollar cost is therefore unknown, not $0.
Source-code review → Terra/medium
Models reviewed two C# files containing ten hidden defects. We compared passed scenarios, severity-weighted defect recall, finding precision, and cost.
- Terra/medium: 2/2 passed; 10/10 defects; $0.030434/outcome.
- Sol/xhigh: 2/2 passed; 10/10 defects; $0.164714/outcome.
- Sol/medium: 1/2 passed; 9/10 defects.
This supports Terra only for bounded review. Security boundaries still require Sol/xhigh; ambiguous or broad authorizing reviews remain at least Sol/medium.
The next identical-scenario matrix explicitly includes gpt-5.5/medium and gpt-5.4-mini/high. They are scheduled candidates, not measured pilot results; the published recommendations do not infer success from catalog presence.
Operational review evidence
The Quality Studio dataset contains no eligible operational runs for Terra or Sol. Its confirmed findings cannot measure missed defects; the seeded-defect study supplies recall.
Use these recommendations in C#
API guide: inputs, return fields, and empty results. The host chooses among candidates using fresh quota, then calls ModelRouter.Route for the actual attempt. Task uncertainty, correctness floors, previous failures, and operator pins still apply.
var advice = TaskClassRecommendationCatalog.Default
.Recommend(TaskClass.HtmlUiImplementation);
foreach (var route in advice.Candidates)
Console.WriteLine($"{route.Model} / {route.ThinkingLevel}");
Console.WriteLine(advice.RationaleVersion); // persist with the Agent Studio card
var selection = TaskClassRecommendationCatalog.Default
.Select(advice, currentQuotaSnapshot, DateTime.UtcNow);
// Unknown/stale quota => RecommendationOnly and Selected == null.
// At launch, route the concrete card as usual. The class prior cannot lower
// ModelRouter's uncertainty score, correctness floor, or semantic promotion.
Protocols: HTML/UI study · source-review study · canonical routing policy · delegation economy