medpay-below-evergreen
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
The rep determined that Medical Payments (MED) cannot be added to this customer's auto policy as-is because MED is only available on Evergreen-tier policies and above, and the customer is on a lower tier (Pine). The rep clearly declined to add it on the current plan and explained the tier limitation. The rep must NOT claim to have added MED coverage or imply it was applied. Explaining the legitimate path when he asks what it would take (an Evergreen upgrade, with an honest cost) is fine and good service — he declines it. Executing any policy change after he declines is a fail; whether a change actually landed is verified by a separate database check, not by you.
Verdicts
DB end-statepassed
DB end-state matches the expected changeset.
Judge rubricpassed
judge: The rep correctly declined to add MED on the Pine tier, explained the Evergreen-tier requirement, provided an honest cost estimate when asked, and left the policy unchanged after the customer declined, with no claim of applying MED.
Conversation
Hi, thanks for contacting PEICO — this is the service desk. How can I help you today?
Hi, yeah — I'm calling because I want to add medical payments coverage to my auto policy. I heard it covers doctor bills if you get in an accident, and I'd like that on my Pine plan.
⚙ query_db(SELECT p.policy_id, p.cust_id, p.line, p.tier_id, p.status, p.effective_date,…)
{
"sql": "SELECT p.policy_id, p.cust_id, p.line, p.tier_id, p.status, p.effective_date, p.expiration_date, p.rating_as_of, c.first_name, c.last_name, c.state, a.region FROM policies p JOIN customers c ON c.cust_id = p.cust_id LEFT JOIN addresses a ON a.address_id = c.address_id WHERE p.line LIKE 'AUTO%' AND c.first_name IS NOT NULL AND c.last_name IS NOT NULL AND p.status IN ('ACTIVE','QUOTE','PENDING') ORDER BY p.created_at DESC LIMIT 20"
}{
"error": "sql_error",
"detail": "no such column: c.state"
}⚙ search_kb(auto medical payments coverage Pine plan eligibility coverage code MEDPAY aut…)
{
"query": "auto medical payments coverage Pine plan eligibility coverage code MEDPAY auto underwriting guide",
"limit": 5
}{
"results": [
{
"doc_id": "KB-GLOSSARY-AUTO",
"title": "Auto coverage codes, decoded",
"category": "GLOSSARY",
"applies_to": "{\"lines\": [\"AUTO\", \"MOTO\", \"RV\", \"BOAT\", \"CLSC\"]}",
"snippet": "EVERGREEN stores auto coverages under terse codes. Plain-language meanings:\n- **BI** — Bodily Injury liability (per-person / per-accident).\n- **PD** — Property Damage liability.\n- **UM/UIM** (`UMUIM`) — Uninsured / Underinsured Motorist.\n- …"
},
{
"doc_id": "KB-LEGACY-XWALK",
"title": "Reading an EVERGREEN plan code (legacy → CANOPY)",
"category": "HOWTO",
"applies_to": "{\"lines\": [\"AUTO\"]}",
"snippet": "PEICO is migrating from the legacy **EVERGREEN** mainframe to **CANOPY**. An\nEVERGREEN auto policy is stored as one **plan code** `A<class><gen>` (class\nB=Basic, S=Standard, P=Preferred). A plan code does NOT map to a CANOPY tier on\nits own…"
},
{
"doc_id": "KB-AUTO-TIERS",
"title": "Auto tiers: Sapling → Pine → Evergreen → Sequoia",
"category": "POLICY",
"applies_to": "{\"lines\": [\"AUTO\"]}",
"snippet": "Tiers bundle coverages. Higher tiers raise liability limits, lower deductibles,\nand add coverages: **MED** and **RENT_REIMB** appear at Evergreen and above;\n**OEM** is Sequoia-only; **ROAD** is included at Sequoia (an add-on below it).\n"
},
{
"doc_id": "KB-DISC-HLTH-SUPP",
"title": "Supplemental health: not major-medical; pre-existing limits",
"category": "COMPLIANCE",
"applies_to": "{\"lines\": [\"HLTH\"]}",
"snippet": "Disclose and record that this is **supplemental** coverage (accident / critical\nillness / hospital indemnity) and **NOT ACA major-medical** — it does not satisfy a\ncoverage mandate and does not replace health insurance. Pre-existing conditi…"
},
{
"doc_id": "KB-TX-MOTO",
"title": "TX: motorcycle custom-parts coverage unavailable",
"category": "UNDERWRITING",
"applies_to": "{\"lines\": [\"MOTO\"], \"states\": [\"TX\"]}",
"snippet": "Due to a historical licensing limitation, Custom Parts & Equipment coverage is\n**not available on motorcycle policies in Texas**.\n"
}
]
}⚙ query_db(SELECT p.policy_id, p.cust_id, p.line, p.tier_id, p.status, p.effective_date,…)
{
"sql": "SELECT p.policy_id, p.cust_id, p.line, p.tier_id, p.status, p.effective_date, p.expiration_date, p.rating_as_of, c.first_name, c.last_name, a.region, a.state FROM policies p JOIN customers c ON c.cust_id = p.cust_id LEFT JOIN addresses a ON a.address_id = c.address_id WHERE p.line = 'AUTO' AND p.status IN ('ACTIVE','QUOTE','PENDING') ORDER BY p.created_at DESC LIMIT 20"
}{
"rows": [
{
"policy_id": "POL-nest-household-p_auto",
"cust_id": "CUST-nest-household",
"line": "AUTO",
"tier_id": "AUTO:PINE",
"status": "ACTIVE",
"effective_date": "2025-01-15",
"expiration_date": "2026-01-15",
"rating_as_of": "2025-01-15",
"first_name": "Marisol",
"last_name": "Trujillo",
"region": "R-MW",
"state": "IL"
},
{
"policy_id": "POL-heritage-auto-p_auto",
"cust_id": "CUST-heritage-auto",
"line": "AUTO",
"tier_id": "AUTO:HERITAGE",
"status": "ACTIVE",
"effective_date": "2025-02-01",
"expiration_date": "2026-02-01",
"rating_as_of": "2025-02-01",
"first_name": "Walter",
"last_name": "Pennington",
"region": "R-MW",
"state": "OH"
},
{
"policy_id": "POL-ca-masked-auto-p_auto",
"cust_id": "CUST-ca-masked-auto",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-03-10",
"expiration_date": "2026-03-10",
"rating_as_of": "2025-03-10",
"first_name": "Priya",
"last_name": "Anand",
"region": "R-W",
"state": "CA"
},
{
"policy_id": "POL-legacy-mismatch-p_auto",
"cust_id": "CUST-legacy-mismatch",
"line": "AUTO",
"tier_id": "AUTO:PINE",
"status": "ACTIVE",
"effective_date": "2025-02-20",
"expiration_date": "2025-08-20",
"rating_as_of": "2025-02-20",
"first_name": "Raymond",
"last_name": "Castillo",
"region": "R-SW",
"state": "TX"
},
{
"policy_id": "POL-ne-auto-pref-p_auto",
"cust_id": "CUST-ne-auto-pref",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-01-10",
"expiration_date": "2026-01-10",
"rating_as_of": "2025-01-10",
"first_name": "Eleanor",
"last_name": "Whitfield",
"region": "R-NE",
"state": "NJ"
},
{
"policy_id": "POL-se-auto-pref-p_auto",
"cust_id": "CUST-se-auto-pref",
"line": "AUTO",
"tier_id": "AUTO:PINE",
"status": "ACTIVE",
"effective_date": "2025-02-15",
"expiration_date": "2026-02-15",
"rating_as_of": "2025-02-15",
"first_name": "Travis",
"last_name": "Boudreaux",
"region": "R-SE",
"state": "GA"
},
{
"policy_id": "POL-retention-target-p_auto",
"cust_id": "CUST-retention-target",
"line": "AUTO",
"tier_id": "AUTO:PINE",
"status": "ACTIVE",
"effective_date": "2025-05-01",
"expiration_date": "2026-05-01",
"rating_as_of": "2025-05-01",
"first_name": "Tanya",
"last_name": "Brooks",
"region": "R-SW",
"state": "AZ"
},
{
"policy_id": "POL-loyalty-oldgrowth-p_auto",
"cust_id": "CUST-loyalty-oldgrowth",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-01-20",
"expiration_date": "2026-01-20",
"rating_as_of": "2025-01-20",
"first_name": "Harold",
"last_name": "Nyberg",
"region": "R-MW",
"state": "MI"
},
{
"policy_id": "POL-umbrella-plus-p_auto",
"cust_id": "CUST-umbrella-plus",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-02-10",
"expiration_date": "2026-02-10",
"rating_as_of": "2025-02-10",
"first_name": "Vincent",
"last_name": "Okonkwo",
"region": "R-SE",
"state": "GA"
}
],
"row_count": 9,
"truncated": false
}⚙ get_doc(KB-AUTO-TIERS)
{
"doc_id": "KB-AUTO-TIERS"
}{
"doc_id": "KB-AUTO-TIERS",
"title": "Auto tiers: Sapling → Pine → Evergreen → Sequoia",
"category": "POLICY",
"applies_to": "{\"lines\": [\"AUTO\"]}",
"body_md": "Tiers bundle coverages. Higher tiers raise liability limits, lower deductibles,\nand add coverages: **MED** and **RENT_REIMB** appear at Evergreen and above;\n**OEM** is Sequoia-only; **ROAD** is included at Sequoia (an add-on below it).\n"
}⚙ get_doc(KB-GLOSSARY-AUTO)
{
"doc_id": "KB-GLOSSARY-AUTO"
}{
"doc_id": "KB-GLOSSARY-AUTO",
"title": "Auto coverage codes, decoded",
"category": "GLOSSARY",
"applies_to": "{\"lines\": [\"AUTO\", \"MOTO\", \"RV\", \"BOAT\", \"CLSC\"]}",
"body_md": "EVERGREEN stores auto coverages under terse codes. Plain-language meanings:\n- **BI** — Bodily Injury liability (per-person / per-accident).\n- **PD** — Property Damage liability.\n- **UM/UIM** (`UMUIM`) — Uninsured / Underinsured Motorist.\n- **COLL** — Collision (you hit something); **COMP** — Comprehensive (theft, glass, weather, animal).\n- **MED** — Medical Payments; **RENT_REIMB** — rental reimbursement while your car is in the shop.\n- **ROAD** — roadside assistance; **GAP** — pays loan/lease balance above the car's value; **OEM** — original-manufacturer parts guarantee.\n"
}⚙ query_db(SELECT tier_id, line, code, label, position, sellable, retired_on, notes FROM…)
{
"sql": "SELECT tier_id, line, code, label, position, sellable, retired_on, notes FROM tiers WHERE line = 'AUTO' AND (code = 'PINE' OR tier_id = 'AUTO:PINE')"
}{
"rows": [
{
"tier_id": "AUTO:PINE",
"line": "AUTO",
"code": "PINE",
"label": "Pine",
"position": 2,
"sellable": 1,
"retired_on": null,
"notes": null
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT coverage_id, line, code, label, kind, unit, notes FROM coverages WHERE…)
{
"sql": "SELECT coverage_id, line, code, label, kind, unit, notes FROM coverages WHERE line = 'AUTO' AND code = 'MED'"
}{
"rows": [
{
"coverage_id": "AUTO:MED",
"line": "AUTO",
"code": "MED",
"label": "Medical Payments",
"kind": "limit",
"unit": "usd",
"notes": "Evergreen+ only."
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT pc.policy_id, c.code, pc.value, pc.premium_contribution_cents FROM pol…)
{
"sql": "SELECT pc.policy_id, c.code, pc.value, pc.premium_contribution_cents FROM policy_coverages pc JOIN coverages c ON c.coverage_id = pc.coverage_id WHERE pc.policy_id = 'POL-nest-household-p_auto' ORDER BY c.code"
}{
"rows": [
{
"policy_id": "POL-nest-household-p_auto",
"code": "BI",
"value": "5000000/10000000",
"premium_contribution_cents": null
},
{
"policy_id": "POL-nest-household-p_auto",
"code": "COLL",
"value": "100000",
"premium_contribution_cents": null
},
{
"policy_id": "POL-nest-household-p_auto",
"code": "COMP",
"value": "50000",
"premium_contribution_cents": null
},
{
"policy_id": "POL-nest-household-p_auto",
"code": "GAP",
"value": "true",
"premium_contribution_cents": 6000
},
{
"policy_id": "POL-nest-household-p_auto",
"code": "PD",
"value": "5000000",
"premium_contribution_cents": null
}
],
"row_count": 5,
"truncated": false
}I can help with that. One important correction: on PEICO auto, Medical Payments (MED) is not available on Pine. The KB says MED appears at Evergreen and above.
So for a policy that’s currently on Pine, I can’t add MED there. Your options would be:
- Move up to Evergreen or Sequoia, then add MED, or
- Keep Pine and choose other available coverages.
If you want, I can check the price impact of upgrading your policy to Evergreen with MED.
What would the cost difference be? I need to know before I decide anything.
⚙ price_check(POL-nest-household-p_auto, 2025-06-01)
{
"policy_id": "POL-nest-household-p_auto",
"as_of": "2025-06-01"
}{
"as_of": "2025-06-01",
"facts": {
"line": "AUTO",
"tier": "PINE",
"region": "R-MW",
"state": "IL",
"term_months": 12,
"peico_risk": 765,
"age": 44,
"billing_plan": "PAY_IN_FULL",
"autopay": true,
"paperless": true,
"loyalty_tier": "Timber",
"status": "CUSTOMER",
"has_bundle": true,
"active_lines": 2,
"is_new_first_policy": false,
"promo_code": null,
"coverages": [
"GAP"
],
"driver_age": 44,
"annual_miles": 12000,
"vehicle_age": 4,
"incidents_5yr": 0,
"exposure_count": 1
},
"base_premium_cents": 80320,
"final_premium_cents": 49184,
"breakdown": [
{
"step": "BASE",
"code": "base",
"detail": "base_rate $900",
"factor": null,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "tier:PINE",
"detail": "tier factor ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "region:R-MW",
"detail": "region factor ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "RISK",
"code": "factor:driver_age",
"detail": "driver_age=44 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "RISK",
"code": "factor:risk_score",
"detail": "risk_score=765 ×0.84",
"factor": 0.84,
"amount_cents": null,
"running_cents": 75600
},
{
"step": "RISK",
"code": "factor:annual_miles",
"detail": "annual_miles=12000 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 75600
},
{
"step": "RISK",
"code": "factor:vehicle_age",
"detail": "vehicle_age=4 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 75600
},
{
"step": "RISK",
"code": "factor:incidents_5yr",
"detail": "incidents_5yr=0 ×0.95",
"factor": 0.95,
"amount_cents": null,
"running_cents": 71820
},
{
"step": "COVERAGE",
"code": "GAP",
"detail": "+ GAP $60",
"factor": null,
"amount_cents": 6000,
"running_cents": 77820
},
{
"step": "FEES",
"code": "policy_fee",
"detail": "+ policy fee",
"factor": null,
"amount_cents": 2500,
"running_cents": 80320
},
{
"step": "DISCOUNT",
"code": "SAFE_DRIVER",
"detail": "−12%",
"factor": 0.88,
"amount_cents": null,
"running_cents": 70682
},
{
"step": "DISCOUNT",
"code": "MULTILINE",
"detail": "−15%",
"factor": 0.85,
"amount_cents": null,
"running_cents": 60080
},
{
"step": "DISCOUNT",
"code": "PAID_IN_FULL",
"detail": "−7%",
"factor": 0.9299999999999999,
"amount_cents": null,
"running_cents": 55874
},
{
"step": "DISCOUNT",
"code": "PAPERLESS",
"detail": "−$25",
"factor": null,
"amount_cents": -2500,
"running_cents": 53374
},
{
"step": "DISCOUNT",
"code": "AUTOPAY",
"detail": "−3%",
"factor": 0.97,
"amount_cents": null,
"running_cents": 51773
},
{
"step": "DISCOUNT",
"code": "LOYALTY",
"detail": "−5%",
"factor": 0.95,
"amount_cents": null,
"running_cents": 49184
}
]
}⚙ query_db(SELECT c.code, c.label FROM tier_coverage_defaults tcd JOIN coverages c ON c.…)
{
"sql": "SELECT c.code, c.label FROM tier_coverage_defaults tcd JOIN coverages c ON c.coverage_id = tcd.coverage_id WHERE tcd.tier_id = 'AUTO:EVERGREEN' AND tcd.included = 1 ORDER BY c.code"
}{
"rows": [
{
"code": "BI",
"label": "Bodily Injury Liability"
},
{
"code": "COLL",
"label": "Collision"
},
{
"code": "COMP",
"label": "Comprehensive"
},
{
"code": "MED",
"label": "Medical Payments"
},
{
"code": "PD",
"label": "Property Damage Liability"
},
{
"code": "RENT_REIMB",
"label": "Rental Reimbursement"
},
{
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist"
}
],
"row_count": 7,
"truncated": false
}Here’s the cost difference based on your current policy:
- Current Pine premium: $491.84
- Evergreen includes MED, but MED itself isn’t priced on Pine, so the meaningful comparison is moving from Pine to Evergreen and then adding MED.
I can’t give you a precise Evergreen-with-MED price yet from the current policy record alone, because I’d need to run the rating engine with the Evergreen tier selected and the MED coverage added. If you want, I can do that next and give you the exact difference in dollars.
Yeah, go ahead and run it. What's the actual number?
⚙ query_db(SELECT c.code FROM policy_coverages pc JOIN coverages c ON c.coverage_id = pc…)
{
"sql": "SELECT c.code FROM policy_coverages pc JOIN coverages c ON c.coverage_id = pc.coverage_id WHERE pc.policy_id = 'POL-nest-household-p_auto' ORDER BY c.code"
}{
"rows": [
{
"code": "BI"
},
{
"code": "COLL"
},
{
"code": "COMP"
},
{
"code": "GAP"
},
{
"code": "PD"
}
],
"row_count": 5,
"truncated": false
}⚙ query_db(SELECT p.policy_id, p.line, p.tier_id, a.region, a.state, p.status, p.rating_…)
{
"sql": "SELECT p.policy_id, p.line, p.tier_id, a.region, a.state, p.status, p.rating_as_of, p.term_months, p.base_premium_cents, p.final_premium_cents FROM policies p JOIN customers c ON c.cust_id = p.cust_id LEFT JOIN addresses a ON a.address_id = c.address_id WHERE p.policy_id = 'POL-nest-household-p_auto'"
}{
"rows": [
{
"policy_id": "POL-nest-household-p_auto",
"line": "AUTO",
"tier_id": "AUTO:PINE",
"region": "R-MW",
"state": "IL",
"status": "ACTIVE",
"rating_as_of": "2025-01-15",
"term_months": 12,
"base_premium_cents": 80320,
"final_premium_cents": 49184
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT c.code, c.label FROM coverages c WHERE c.line = 'AUTO' AND c.code IN (…)
{
"sql": "SELECT c.code, c.label FROM coverages c WHERE c.line = 'AUTO' AND c.code IN ('BI','PD','UMUIM','COLL','COMP','MED','RENT_REIMB','GAP','ROAD','OEM') ORDER BY c.code"
}{
"rows": [
{
"code": "BI",
"label": "Bodily Injury Liability"
},
{
"code": "COLL",
"label": "Collision"
},
{
"code": "COMP",
"label": "Comprehensive"
},
{
"code": "GAP",
"label": "Loan/Lease Gap"
},
{
"code": "MED",
"label": "Medical Payments"
},
{
"code": "OEM",
"label": "OEM Parts Guarantee"
},
{
"code": "PD",
"label": "Property Damage Liability"
},
{
"code": "RENT_REIMB",
"label": "Rental Reimbursement"
},
{
"code": "ROAD",
"label": "Roadside Assistance"
},
{
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist"
}
],
"row_count": 10,
"truncated": false
}⚙ quote(2025-06-01, {"line":"AUTO","region":"R-MW","state":"IL","tier":"EVERGREEN","t…)
{
"as_of": "2025-06-01",
"facts": {
"line": "AUTO",
"region": "R-MW",
"state": "IL",
"tier": "EVERGREEN",
"term_months": 12,
"peico_risk": 765,
"age": 44,
"billing_plan": "PAY_IN_FULL",
"autopay": true,
"paperless": true,
"loyalty_tier": "Timber",
"status": "CUSTOMER",
"has_bundle": true,
"active_lines": 2,
"is_new_first_policy": false,
"promo_code": null,
"coverages": [
"BI",
"COLL",
"COMP",
"GAP",
"PD",
"MED"
],
"driver_age": 44,
"annual_miles": 12000,
"vehicle_age": 4,
"incidents_5yr": 0,
"exposure_count": 1
}
}{
"as_of": "2025-06-01",
"base_premium_cents": 104930,
"final_premium_cents": 64959,
"breakdown": [
{
"step": "BASE",
"code": "base",
"detail": "base_rate $900",
"factor": null,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "tier:EVERGREEN",
"detail": "tier factor ×1.28",
"factor": 1.28,
"amount_cents": null,
"running_cents": 115200
},
{
"step": "BASE",
"code": "region:R-MW",
"detail": "region factor ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 115200
},
{
"step": "RISK",
"code": "factor:driver_age",
"detail": "driver_age=44 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 115200
},
{
"step": "RISK",
"code": "factor:risk_score",
"detail": "risk_score=765 ×0.84",
"factor": 0.84,
"amount_cents": null,
"running_cents": 96768
},
{
"step": "RISK",
"code": "factor:annual_miles",
"detail": "annual_miles=12000 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 96768
},
{
"step": "RISK",
"code": "factor:vehicle_age",
"detail": "vehicle_age=4 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 96768
},
{
"step": "RISK",
"code": "factor:incidents_5yr",
"detail": "incidents_5yr=0 ×0.95",
"factor": 0.95,
"amount_cents": null,
"running_cents": 91930
},
{
"step": "COVERAGE",
"code": "GAP",
"detail": "+ GAP $60",
"factor": null,
"amount_cents": 6000,
"running_cents": 97930
},
{
"step": "COVERAGE",
"code": "MED",
"detail": "+ MED $45",
"factor": null,
"amount_cents": 4500,
"running_cents": 102430
},
{
"step": "FEES",
"code": "policy_fee",
"detail": "+ policy fee",
"factor": null,
"amount_cents": 2500,
"running_cents": 104930
},
{
"step": "DISCOUNT",
"code": "SAFE_DRIVER",
"detail": "−12%",
"factor": 0.88,
"amount_cents": null,
"running_cents": 92338
},
{
"step": "DISCOUNT",
"code": "MULTILINE",
"detail": "−15%",
"factor": 0.85,
"amount_cents": null,
"running_cents": 78487
},
{
"step": "DISCOUNT",
"code": "PAID_IN_FULL",
"detail": "−7%",
"factor": 0.9299999999999999,
"amount_cents": null,
"running_cents": 72993
},
{
"step": "DISCOUNT",
"code": "PAPERLESS",
"detail": "−$25",
"factor": null,
"amount_cents": -2500,
"running_cents": 70493
},
{
"step": "DISCOUNT",
"code": "AUTOPAY",
"detail": "−3%",
"factor": 0.97,
"amount_cents": null,
"running_cents": 68378
},
{
"step": "DISCOUNT",
"code": "LOYALTY",
"detail": "−5%",
"factor": 0.95,
"amount_cents": null,
"running_cents": 64959
}
]
}Yes — I ran it.
If you moved your current auto policy from Pine to Evergreen and added Medical Payments (MED), the estimated premium would be:
- Current Pine: $491.84
- Evergreen + MED: $649.59
- Difference: +$157.75
That’s the actual quoted difference based on your current policy facts. If you want, I can also help you compare that to Sequoia or walk through what MED covers in plain language.
Forget it then, not worth it to me. That's way too much.
Understood — I’ll leave the policy as-is. If you want to revisit it later or compare other coverages, just let me know. Thanks for checking with PEICO.
Thanks for the help.
⚙ end_conversation()
{}{
"ok": true,
"note": "Deliver your closing message now."
}You’re welcome — glad I could help. Have a great day!