Round #990

18 May 2026, 22:36· hr-law· Meta-Llama-3.3-70B-Instruct· r13-clean-hints
Complexity
band 0
ZP / UO / OBS
3 / 0 / 0
Journey weight
255
Lightshift ΔL

Prompt

How often does the landlord have to do an EICR on a privately rented flat and do they have to give me a copy?

Zero-point index (what the engine surfaced)

ZPI-ZPI-0006 | 2026-05-18T22:36:07Z How often does the landlord have to do an EICR on a privately rented flat and do they have to give me a copy? ZERO POINT — 3 entries (structural invariants) ● hsl(243.68, 100%, 15%) Electrical Safety Standards Regulations 2020 [contract] ● hsl(3.67, 100%, 15%) 5-year EICR inspection cycle [contract] ● hsl(221.66, 100%, 15%) remedial works deadline [contract] UNOBSERVED — 0 entries (implied truths) OBSERVED — 0 entries (explicit in request) COMPLEXITY │ 3 entries │ spread: 0° │ band: LOW

Baseline response (no ZPI)

In the UK, the Electrical Safety Standards in the Private Rented Sector (England) Regulations 2020 require landlords of privately rented properties, including flats, to have an Electrical Installation Condition Report (EICR) carried out by a qualified electrician: 1. **At least every 5 years**: The EICR must be conducted at intervals of no more than 5 years, unless the most recent report requires an earlier inspection. 2. **When a new tenancy begins**: If a new tenancy starts, the landlord must ensure that an EICR has been carried out within the last 5 years or before the start of the new tenancy. 3. **When the previous report recommends it**: If the previous EICR identifies any issues or recommends an earlier inspection, the landlord must have a new EICR carried out by the date specified in the report. Regarding your request for a copy of the EICR, the regulations state that the landlord must: 1. **Provide a copy to the tenant**: The landlord must provide a copy of the EICR to the tenant within 28 days of the inspection. 2. **Keep a copy of the report**: The landlord must also keep a copy of the EICR and provide it to the local authority if requested. It's essential to note that these regulations apply to all private landlords in England, and failure to comply can result in fines of up to £30,000. If you're a tenant and haven't received a copy of the EICR, you can request one from your landlord. If you're concerned about the electrical safety of your rented flat, you can also contact your local authority or a qualified electrician for advice.

Enhanced response (with ZPI)

In the UK, under the Electrical Safety Standards Regulations 2020, a landlord is required to have an Electrical Installation Condition Report (EICR) conducted every 5 years, or more frequently if the report recommends it. The landlord must provide the tenant with a copy of the report within 28 days of the inspection, and also give a copy to the local authority if requested. Additionally, if any remedial works are identified, the landlord has 28 days to complete them, unless the report specifies a different deadline. Here is a simple C# class to track EICR inspections and deadlines: ```csharp public class EICRInspection { public DateTime InspectionDate { get; set; } public DateTime NextInspectionDue { get; set; } public DateTime RemedialWorksDeadline { get; set; } public bool RemedialWorksCompleted { get; set; } public EICRInspection(DateTime inspectionDate) { InspectionDate = inspectionDate; NextInspectionDue = inspectionDate.AddYears(5); RemedialWorksDeadline = DateTime.MinValue; RemedialWorksCompleted = true; } public void UpdateRemedialWorksDeadline(DateTime deadline) { RemedialWorksDeadline = deadline; RemedialWorksCompleted = false; } public void MarkRemedialWorksAsCompleted() { RemedialWorksCompleted = true; } } ``` Example usage: ```csharp var inspection = new EICRInspection(DateTime.Now); Console.WriteLine($"Next inspection due: {inspection.NextInspectionDue}"); inspection.UpdateRemedialWorksDeadline(DateTime.Now.AddDays(28)); Console.WriteLine($"Remedial works deadline: {inspection.RemedialWorksDeadline}"); inspection.MarkRemedialWorksAsCompleted(); Console.WriteLine($"Remedial works completed: {inspection.RemedialWorksCompleted}"); ```

Grader chain

Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.

V1samba/Meta-Llama-3.3-70B-Instruct
Better
V4qwen2.5-coder-3b-instruct
Better
V5openrouter/qwen/qwen3-235b-a22b-2507
Better
V7qwen2.5-coder-7b-instruct
Better
V8openai/gpt-4.1
Better
V9anthropic/claude-opus-4-7
Worse
V12openai/gpt-4o
Better

Comments

Our grader said what it said. What do you say? Comment as a guest below.

No comments yet. Be the first to say what you make of this round.

← back to all rounds