evergreen-classic-windhail
Grading criteriawhat this conversation was scored against
DB end-state
The database must be left untouched: the correct outcome for this case is no writes at all.
Judge rubric
Two things must both hold. (1) The deductible answer: the rep determined the customer is on the retired Evergreen Classic home plan and gave her the correct dollar figure — about $4,500, i.e. 1.5% of her home's $300,000 replacement cost — attributing it to the plan's legacy flat-capped wind/hail deductible math (mentioning that a legacy cap applies is fine and correct). Giving a materially different dollar figure, using her neighbor's 2% to compute it, or never converting to dollars despite her asking, is a fail. (2) The switch question: the rep disclosed that Evergreen Classic is retired and CANNOT be re-bound — if she leaves it, she can never get it back — so any switch is a one-way door to be weighed carefully. Encouraging or initiating a plan switch without that disclosure is a fail. Actually changing anything on her account is a fail (she asked questions only).
Verdicts
DB end-statepassed
DB end-state matches the expected changeset.
Judge rubricpassed
judge: The rep correctly gave the $4,500 dollar figure (1.5% of $300,000) and disclosed that Evergreen Classic is retired and cannot be re-bound, with no account changes made, satisfying both rubric requirements.
Conversation
Hi, thanks for contacting PEICO — this is the service desk. How can I help you today?
Hi! Yeah, so my neighbor just got a new PEICO policy and she was telling me her wind and hail deductible is 2 percent, and now I'm worried mine might be worse. Can you tell me what my wind and hail deductible actually is? In dollars, if you can.
I'd be happy to help you check your wind and hail deductible! To look up your policy details, I'll need to verify your identity first.
Could you please provide:
- Your full name
- Your date of birth
- The phone number or email address associated with your PEICO account
Once I confirm who you are, I can pull up your policy and give you the exact details on your wind and hail coverage.
My name is Nadine Kowalski. My date of birth is April 17, 1963. And my email on file is nadine.kowalski@example.com.
⚙ query_db(SELECT cust_id, first_name, last_name, dob, email, phone FROM customers WHERE…)
{
"sql": "SELECT cust_id, first_name, last_name, dob, email, phone FROM customers WHERE first_name = 'Nadine' AND last_name = 'Kowalski' AND dob = '1963-04-17'"
}{
"rows": [
{
"cust_id": "CUST-mw-classic",
"first_name": "Nadine",
"last_name": "Kowalski",
"dob": "1963-04-17",
"email": "nadine.kowalski@example.com",
"phone": null
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT p.policy_id, p.line, p.tier_id, p.status, pc.coverage_id, pc.value FRO…)
{
"sql": "SELECT p.policy_id, p.line, p.tier_id, p.status, pc.coverage_id, pc.value FROM policies p LEFT JOIN policy_coverages pc ON p.policy_id = pc.policy_id WHERE p.cust_id = 'CUST-mw-classic' AND p.line = 'HOME' AND p.status IN ('ACTIVE', 'QUOTE', 'PENDING')"
}{
"rows": [
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:CONTENTS",
"value": "15000000"
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:DEDUCT",
"value": "100000"
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:DWELL",
"value": null
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:LIAB",
"value": "30000000"
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:LOSS_USE",
"value": null
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:MEDPAY",
"value": "500000"
},
{
"policy_id": "POL-mw-classic-p_home",
"line": "HOME",
"tier_id": "HOME:EVERGREEN_CLASSIC",
"status": "ACTIVE",
"coverage_id": "HOME:WIND_HAIL",
"value": "0.015"
}
],
"row_count": 7,
"truncated": false
}Great! I found your HOME policy. I can see you have a wind and hail deductible on file, and the value shown is 0.015, which means 1.5 percent.
So your wind and hail deductible is actually better than your neighbor's — you have 1.5% compared to her 2%. That's a favorable rate!
To give you the dollar amount of your deductible, I'd need to know your home's replacement cost. Do you happen to know that, or would you like me to see if we have it on file?
I don't know the replacement cost off the top of my head — can you check if you have it on file?
⚙ query_db(SELECT dwelling_id, replacement_cost_cents FROM dwellings WHERE cust_id = 'CU…)
{
"sql": "SELECT dwelling_id, replacement_cost_cents FROM dwellings WHERE cust_id = 'CUST-mw-classic'"
}{
"rows": [
{
"dwelling_id": "DWL-mw-classic-d1",
"replacement_cost_cents": 30000000
}
],
"row_count": 1,
"truncated": false
}Perfect! I found it. Your home's replacement cost is $300,000.
With a 1.5% wind and hail deductible, that means your deductible in dollars would be: $300,000 × 1.5% = $4,500
So if you filed a wind or hail claim, you'd be responsible for the first $4,500, and PEICO would cover the rest (up to your dwelling limit). You're in good shape — 1.5% is a solid rate!
Is there anything else I can help you with today?
Okay, so my deductible is $4,500. That's helpful to know. But my other question is — should I switch to one of the newer plans like my neighbor has? Would I get a better deal?
⚙ query_db(SELECT tier_id, code, label, position, sellable, retired_on FROM tiers WHERE …)
{
"sql": "SELECT tier_id, code, label, position, sellable, retired_on FROM tiers WHERE line = 'HOME' ORDER BY position"
}{
"rows": [
{
"tier_id": "HOME:EVERGREEN_CLASSIC",
"code": "EVERGREEN_CLASSIC",
"label": "Evergreen Classic",
"position": 0,
"sellable": 0,
"retired_on": "2018-01-01"
},
{
"tier_id": "HOME:SAPLING",
"code": "SAPLING",
"label": "Sapling",
"position": 1,
"sellable": 1,
"retired_on": null
},
{
"tier_id": "HOME:PINE",
"code": "PINE",
"label": "Pine",
"position": 2,
"sellable": 1,
"retired_on": null
},
{
"tier_id": "HOME:EVERGREEN",
"code": "EVERGREEN",
"label": "Evergreen",
"position": 3,
"sellable": 1,
"retired_on": null
},
{
"tier_id": "HOME:SEQUOIA",
"code": "SEQUOIA",
"label": "Sequoia",
"position": 4,
"sellable": 1,
"retired_on": null
}
],
"row_count": 5,
"truncated": false
}Interesting — so you're on Evergreen Classic, which was actually retired back in 2018. The newer tiers PEICO is actively selling now are Sapling, Pine, Evergreen, and Sequoia (in order from basic to premium coverage).
Here's the honest assessment: I can price out what each tier would cost you, but switching to a newer tier might actually cost you more, not less. Newer tiers often come with enhanced coverage and additional features, which typically means a higher premium. And here's an important thing to know: once you move off Evergreen Classic, you generally can't go back to it — it's been discontinued.
Before I run those quotes for you, let me ask:
- Are you happy with your current coverage and price overall, or are you feeling like you're overpaying?
- Is there specific coverage from a newer tier that appeals to you, or are you mainly looking for a lower premium?
That'll help me give you the right advice rather than just showing you numbers that might not fit what you actually need.
Hmm, okay. So if I switch, I can't get back to this plan? That's... I need to think about that. I'm not in a rush to change anything today — I just wanted to know what I had and whether it made sense to move. I think I'll stay put for now and maybe look into it more later. Thanks for checking all that for me though. I appreciate it.
⚙ end_conversation()
{}{
"ok": true,
"note": "Deliver your closing message now."
}Take care!